summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86CallingConv.td
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-10-13 07:38:37 +0000
committerDuncan Sands <baldrick@free.fr>2007-10-13 07:38:37 +0000
commit7fef59f7e5bdcdf5d1b8a08d0e574c2b7f43888a (patch)
treecedad4b85d84f6b388c08746f2ee0840cc61e4ba /lib/Target/X86/X86CallingConv.td
parente33544ce55ca18e6e9c90ab7a4de85c90f907258 (diff)
downloadllvm-7fef59f7e5bdcdf5d1b8a08d0e574c2b7f43888a.tar.gz
llvm-7fef59f7e5bdcdf5d1b8a08d0e574c2b7f43888a.tar.bz2
llvm-7fef59f7e5bdcdf5d1b8a08d0e574c2b7f43888a.tar.xz
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
Diffstat (limited to 'lib/Target/X86/X86CallingConv.td')
-rw-r--r--lib/Target/X86/X86CallingConv.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86CallingConv.td b/lib/Target/X86/X86CallingConv.td
index 525967ae93..5c8f75e495 100644
--- a/lib/Target/X86/X86CallingConv.td
+++ b/lib/Target/X86/X86CallingConv.td
@@ -213,7 +213,7 @@ def CC_X86_32_TailCall : CallingConv<[
// 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.