diff options
author | Arnold Schwaighofer <arnold.schwaighofer@gmail.com> | 2008-09-22 14:50:07 +0000 |
---|---|---|
committer | Arnold Schwaighofer <arnold.schwaighofer@gmail.com> | 2008-09-22 14:50:07 +0000 |
commit | 796a271c5f276c960a3252b92bef90ecd2cade32 (patch) | |
tree | 1eaaabdd43908b4e91dbac538dd8a7ead5478955 /llvm/test/CodeGen/X86/tailcall-stackalign.ll | |
parent | cd5e782bce0f1c93757f170a80da3d3a69abee50 (diff) | |
download | bcm5719-llvm-796a271c5f276c960a3252b92bef90ecd2cade32.tar.gz bcm5719-llvm-796a271c5f276c960a3252b92bef90ecd2cade32.zip |
Change the calling convention used when tail call optimization is enabled from CC_X86_32_TailCall to CC_X86_32_FastCC.
llvm-svn: 56436
Diffstat (limited to 'llvm/test/CodeGen/X86/tailcall-stackalign.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/tailcall-stackalign.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/tailcall-stackalign.ll b/llvm/test/CodeGen/X86/tailcall-stackalign.ll index 80111925eec..ff960b8ce1f 100644 --- a/llvm/test/CodeGen/X86/tailcall-stackalign.ll +++ b/llvm/test/CodeGen/X86/tailcall-stackalign.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -mtriple=i686-unknown-linux -tailcallopt | grep -A 1 call | grep -A 1 tailcaller | grep subl | grep 20 +; RUN: llvm-as < %s | llc -mtriple=i686-unknown-linux -tailcallopt | grep -A 1 call | grep -A 1 tailcaller | grep subl | grep 12 ; Linux has 8 byte alignment so the params cause stack size 20 when tailcallopt ; is enabled, ensure that a normal fastcc call has matching stack size |