diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2013-03-03 15:36:10 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2013-03-03 15:36:10 +0000 |
commit | 5b9f5cc7c4310aec110f315df6fc6d6366b24b08 (patch) | |
tree | e1c9b9b7ff8181be37eaf401bd7967424943ecfe | |
parent | e7259ae90d9dd79fdf7ea4d7030f596c6bb3a48d (diff) |
Default to enabling default-synthesized ivars on all platforms
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176419 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Driver/ToolChain.h | 2 | ||||
-rw-r--r-- | lib/Driver/ToolChains.h | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/include/clang/Driver/ToolChain.h b/include/clang/Driver/ToolChain.h index 9b201bab6b..ee65ed0849 100644 --- a/include/clang/Driver/ToolChain.h +++ b/include/clang/Driver/ToolChain.h @@ -147,7 +147,7 @@ public: /// IsObjCDefaultSynthPropertiesDefault - Does this tool chain enable /// -fobjc-default-synthesize-properties by default. - virtual bool IsObjCDefaultSynthPropertiesDefault() const { return false; } + virtual bool IsObjCDefaultSynthPropertiesDefault() const { return true; } /// IsEncodeExtendedBlockSignatureDefault - Does this tool chain enable /// -fencode-extended-block-signature by default. diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index b313ab610c..b84525fb8a 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -297,10 +297,6 @@ public: return false; } - virtual bool IsObjCDefaultSynthPropertiesDefault() const { - return true; - } - virtual bool IsEncodeExtendedBlockSignatureDefault() const { return true; } @@ -564,10 +560,6 @@ public: virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, const ActionList &Inputs) const; - virtual bool IsObjCDefaultSynthPropertiesDefault() const { - return true; - } - virtual bool IsIntegratedAssemblerDefault() const; virtual bool IsUnwindTablesDefault() const; virtual bool isPICDefault() const; |