Author: lattner
Date: Sun Feb 17 13:00:29 2008
New Revision: 47235

URL: http://llvm.org/viewvc/llvm-project?rev=47235&view=rev
Log:
Fix support for -m32 on x86_64-unknown-linux-gnu.  This has the effect
of always making the target triple (in llvm bc files) be i386-* instead
of i586-* etc, but this shouldn't impact anything in LLVM (which is
driven by cpu attributes) in theory.

Modified:
    llvm-gcc-4.2/trunk/gcc/config/i386/i386.h

Modified: llvm-gcc-4.2/trunk/gcc/config/i386/i386.h
URL: 
http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/gcc/config/i386/i386.h?rev=47235&r1=47234&r2=47235&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/gcc/config/i386/i386.h (original)
+++ llvm-gcc-4.2/trunk/gcc/config/i386/i386.h Sun Feb 17 13:00:29 2008
@@ -3748,7 +3748,7 @@
  * compiler was configured for i[3456]86-os-blah.
  */
 #define LLVM_OVERRIDE_TARGET_ARCH() \
-  (TARGET_64BIT ? "x86_64" : "")
+  (TARGET_64BIT ? "x86_64" : "i386")
 
 /* LLVM_TARGET_INTRINSIC_LOWER - To handle builtins, we want to expand the
  * invocation into normal LLVM code.  If the target can handle the builtin, 
this


_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to