[llvm-commits] [126901] LLVM_OVERRIDE_TARGET_ARCH should return empty string if it doesn' t override the default target.

echeng at apple.com echeng at apple.com
Fri May 4 16:59:58 PDT 2007


Revision: 126901
Author:   echeng
Date:     2007-05-04 16:59:58 -0700 (Fri, 04 May 2007)

Log Message:
-----------
LLVM_OVERRIDE_TARGET_ARCH should return empty string if it doesn't override the default target.

Modified Paths:
--------------
    apple-local/branches/llvm/gcc/config/arm/arm.h

Modified: apple-local/branches/llvm/gcc/config/arm/arm.h
===================================================================
--- apple-local/branches/llvm/gcc/config/arm/arm.h	2007-05-04 23:57:27 UTC (rev 126900)
+++ apple-local/branches/llvm/gcc/config/arm/arm.h	2007-05-04 23:59:58 UTC (rev 126901)
@@ -2921,6 +2921,6 @@
   }
 
 #define LLVM_OVERRIDE_TARGET_ARCH() \
-  (TARGET_THUMB ? "thumb" : "arm")
+  (TARGET_THUMB ? "thumb" : "")
 
 #endif /* ! GCC_ARM_H */





More information about the llvm-commits mailing list