[llvm-commits] [llvm] r56053 - /llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Duncan Sands baldrick at free.fr
Wed Sep 10 06:09:33 PDT 2008


Author: baldrick
Date: Wed Sep 10 08:09:24 2008
New Revision: 56053

URL: http://llvm.org/viewvc/llvm-project?rev=56053&view=rev
Log:
Turn off the new FastCC for the moment.  It causes
a slew of Ada testsuite failures on x86-32 linux.
Seems to be related to the use of float.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=56053&r1=56052&r2=56053&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Wed Sep 10 08:09:24 2008
@@ -1098,8 +1098,6 @@
     return CC_X86_32_FastCall;
   else if (CC == CallingConv::Fast && PerformTailCallOpt)
     return CC_X86_32_TailCall;
-  else if (CC == CallingConv::Fast)
-    return CC_X86_32_FastCC;
   else
     return CC_X86_32_C;
 }





More information about the llvm-commits mailing list