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

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


Author: baldrick
Date: Wed Sep 10 08:11:09 2008
New Revision: 56054

URL: http://llvm.org/viewvc/llvm-project?rev=56054&view=rev
Log:
Add trampoline support for the new FastCC calling
convention (not related to recent Ada testsuite
failures).

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=56054&r1=56053&r2=56054&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Wed Sep 10 08:11:09 2008
@@ -5717,6 +5717,7 @@
       break;
     }
     case CallingConv::X86_FastCall:
+    case CallingConv::FastCC:
       // Pass 'nest' parameter in EAX.
       // Must be kept in sync with X86CallingConv.td
       NestReg = X86::EAX;





More information about the llvm-commits mailing list