Clarify that fastcc has a problem with nested function

trampolines, rather than with nested functions themselves.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42955 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2007-10-13 07:38:37 +00:00
parent e33544ce55
commit 7fef59f7e5

View File

@ -213,7 +213,7 @@ def CC_X86_32_TailCall : CallingConv<[
// Promote i8/i16 arguments to i32. // Promote i8/i16 arguments to i32.
CCIfType<[i8, i16], CCPromoteToType<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 // The first 3 integer arguments, if marked 'inreg' and if the call is not
// a vararg call, are passed in integer registers. // a vararg call, are passed in integer registers.