r194983 - Remove two unused #ifdefs.

Rafael Espindola rafael.espindola at gmail.com
Sun Nov 17 14:36:07 PST 2013


Author: rafael
Date: Sun Nov 17 16:36:07 2013
New Revision: 194983

URL: http://llvm.org/viewvc/llvm-project?rev=194983&view=rev
Log:
Remove two unused #ifdefs.

Modified:
    cfe/trunk/lib/Driver/ToolChains.h

Modified: cfe/trunk/lib/Driver/ToolChains.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/ToolChains.h?rev=194983&r1=194982&r2=194983&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/ToolChains.h (original)
+++ cfe/trunk/lib/Driver/ToolChains.h Sun Nov 17 16:36:07 2013
@@ -329,19 +329,8 @@ public:
     return true;
   }
   virtual bool IsIntegratedAssemblerDefault() const {
-#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
-    return false;
-#else
     // Default integrated assembler to on for Darwin.
     return true;
-#endif
-  }
-  virtual bool IsStrictAliasingDefault() const {
-#ifdef DISABLE_DEFAULT_STRICT_ALIASING
-    return false;
-#else
-    return ToolChain::IsStrictAliasingDefault();
-#endif
   }
 
   virtual bool IsMathErrnoDefault() const {





More information about the cfe-commits mailing list