diff options
author | Douglas Gregor <dgregor@apple.com> | 2012-10-16 23:40:58 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2012-10-16 23:40:58 +0000 |
commit | 57016dda61498294120b1a881d9e6606337b29d9 (patch) | |
tree | 5dfc64766b1250929020a9c1bba6347e84c1046b /include/clang/Basic/TargetInfo.h | |
parent | 708f69bcc1be715efd1e9f46266a9c1ead184be6 (diff) |
Serialize TargetOptions into an AST file, and make sure that we keep
target options around so they can be accessed at any point (rather
than keeping them transient).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166072 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/TargetInfo.h')
-rw-r--r-- | include/clang/Basic/TargetInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/TargetInfo.h b/include/clang/Basic/TargetInfo.h index 3e63505dfa..ea520e8f82 100644 --- a/include/clang/Basic/TargetInfo.h +++ b/include/clang/Basic/TargetInfo.h @@ -23,6 +23,7 @@ #include "llvm/ADT/Triple.h" #include "llvm/Support/DataTypes.h" #include "clang/Basic/AddressSpaces.h" +#include "clang/Basic/TargetOptions.h" #include "clang/Basic/VersionTuple.h" #include "clang/Basic/Specifiers.h" #include <cassert> @@ -39,7 +40,6 @@ class LangOptions; class MacroBuilder; class SourceLocation; class SourceManager; -class TargetOptions; namespace Builtin { struct Info; } @@ -62,7 +62,7 @@ enum TargetCXXABI { /// \brief Exposes information about the current target. /// class TargetInfo : public RefCountedBase<TargetInfo> { - TargetOptions *TargetOpts; + llvm::IntrusiveRefCntPtr<TargetOptions> TargetOpts; llvm::Triple Triple; protected: // Target values set by the ctor of the actual target implementation. Default |