diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2012-08-03 21:51:38 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2012-08-03 21:51:38 +0000 |
commit | 51a0a94b841e64814e63f9f172c6c4ae5d8ff286 (patch) | |
tree | 0c230072c30a759e44b83f314145137b54dacc25 | |
parent | c1290e006045a72120329ad23aa43c66fbe300be (diff) |
Make property synthesis the default on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161266 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Driver/ToolChains.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Driver/ToolChains.h b/lib/Driver/ToolChains.h index 7c163a08b3..0446ebd6d2 100644 --- a/lib/Driver/ToolChains.h +++ b/lib/Driver/ToolChains.h @@ -538,6 +538,10 @@ 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 const char *GetDefaultRelocationModel() const; |