diff options
author | Eli Bendersky <eliben@google.com> | 2013-02-05 23:31:48 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2013-02-05 23:31:48 +0000 |
commit | 59a6fb0381731eb1f7f38de0b217777d1560f3ce (patch) | |
tree | 3650449e8c981ff6ce24a64c1d875c7f6de218c1 /llvm/test/CodeGen/X86/stack-update-frame-opcode.ll | |
parent | fd08bc195b36b2262f9ee4b283eef44b0520ebed (diff) | |
download | bcm5719-llvm-59a6fb0381731eb1f7f38de0b217777d1560f3ce.tar.gz bcm5719-llvm-59a6fb0381731eb1f7f38de0b217777d1560f3ce.zip |
Test for r174446
llvm-svn: 174464
Diffstat (limited to 'llvm/test/CodeGen/X86/stack-update-frame-opcode.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/stack-update-frame-opcode.ll | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/stack-update-frame-opcode.ll b/llvm/test/CodeGen/X86/stack-update-frame-opcode.ll new file mode 100644 index 00000000000..1838c896bfb --- /dev/null +++ b/llvm/test/CodeGen/X86/stack-update-frame-opcode.ll @@ -0,0 +1,22 @@ +; RUN: llc -mtriple=x86_64-pc-linux < %s | FileCheck %s +; RUN: llc -mtriple=x86_64-pc-linux-gnux32 < %s | FileCheck -check-prefix=X32ABI %s + +define i32 @bar(i32 %a) nounwind { +entry: + %arr = alloca [400 x i32], align 16 + +; In the x32 ABI, the stack pointer is treated as a 32-bit value. +; CHECK: subq $1608 +; X32ABI: subl $1608 + + %arraydecay = getelementptr inbounds [400 x i32]* %arr, i64 0, i64 0 + %call = call i32 @foo(i32 %a, i32* %arraydecay) nounwind + ret i32 %call + +; CHECK: addq $1608 +; X32ABI: addl $1608 + +} + +declare i32 @foo(i32, i32*) + |