[llvm-commits] [llvm] r57528 - /llvm/trunk/lib/Target/X86/X86.td

Dale Johannesen dalej at apple.com
Tue Oct 14 15:06:34 PDT 2008


Author: johannes
Date: Tue Oct 14 17:06:33 2008
New Revision: 57528

URL: http://llvm.org/viewvc/llvm-project?rev=57528&view=rev
Log:
Accept -march=i586, because gcc does (a synonym
for pentium).  Fixes
gcc.target/i386/20000720-1.c
gcc.target/i386/pr26826.c


Modified:
    llvm/trunk/lib/Target/X86/X86.td

Modified: llvm/trunk/lib/Target/X86/X86.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86.td?rev=57528&r1=57527&r2=57528&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86.td (original)
+++ llvm/trunk/lib/Target/X86/X86.td Tue Oct 14 17:06:33 2008
@@ -59,6 +59,7 @@
 def : Proc<"generic",         []>;
 def : Proc<"i386",            []>;
 def : Proc<"i486",            []>;
+def : Proc<"i586",            []>;
 def : Proc<"pentium",         []>;
 def : Proc<"pentium-mmx",     [FeatureMMX]>;
 def : Proc<"i686",            []>;





More information about the llvm-commits mailing list