From 51a0a94b841e64814e63f9f172c6c4ae5d8ff286 Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Fri, 3 Aug 2012 21:51:38 +0000 Subject: [PATCH] Make property synthesis the default on Windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161266 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/ToolChains.h | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.50.1