[llvm-commits] [llvm] r42955 - /llvm/trunk/lib/Target/X86/X86CallingConv.td
Duncan Sands
baldrick at free.fr
Sat Oct 13 00:38:38 PDT 2007
Author: baldrick
Date: Sat Oct 13 02:38:37 2007
New Revision: 42955
URL: http://llvm.org/viewvc/llvm-project?rev=42955&view=rev
Log:
Clarify that fastcc has a problem with nested function
trampolines, rather than with nested functions themselves.
Modified:
llvm/trunk/lib/Target/X86/X86CallingConv.td
Modified: llvm/trunk/lib/Target/X86/X86CallingConv.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86CallingConv.td?rev=42955&r1=42954&r2=42955&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86CallingConv.td (original)
+++ llvm/trunk/lib/Target/X86/X86CallingConv.td Sat Oct 13 02:38:37 2007
@@ -213,7 +213,7 @@
// Promote i8/i16 arguments to i32.
CCIfType<[i8, i16], CCPromoteToType<i32>>,
- // Nested functions are currently not supported by fastcc.
+ // Nested function trampolines are currently not supported by fastcc.
// The first 3 integer arguments, if marked 'inreg' and if the call is not
// a vararg call, are passed in integer registers.
More information about the llvm-commits
mailing list