From 06d77dd94573543f2bc0a183d12602e194d37981 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Wed, 10 Sep 2008 13:09:24 +0000 Subject: [PATCH] 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56053 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelLowering.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 6381623e080..3a7ec4f8f25 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -1098,8 +1098,6 @@ CCAssignFn *X86TargetLowering::CCAssignFnForNode(SDValue Op) const { 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; }