]> granicus.if.org Git - clang/commitdiff
Make ARC support default to true. Please can we stop making Objective-C runtime...
authorDavid Chisnall <csdavec@swan.ac.uk>
Wed, 29 Jun 2011 13:17:23 +0000 (13:17 +0000)
committerDavid Chisnall <csdavec@swan.ac.uk>
Wed, 29 Jun 2011 13:17:23 +0000 (13:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@134066 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/ToolChain.h

index 053732a82ff1b31dcdea49bd31e9c8dc341162a3..a570beaf794e0d9b8ec1d76d776ee7a102afef30 100644 (file)
@@ -167,7 +167,7 @@ public:
   virtual bool UseSjLjExceptions() const { return false; }
 
   /// HasARCRuntime - Does this tool chain provide a specialized ARC runtime.
-  virtual bool HasARCRuntime() const { return false; }
+  virtual bool HasARCRuntime() const { return true; }
 
   /// ComputeLLVMTriple - Return the LLVM target triple to use, after taking
   /// command line arguments into account.