1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/CodeGen/X86/fast-cc-merge-stack-adj.ll
Chris Lattner b87c89a574 new testcase
llvm-svn: 22037
2005-05-14 23:52:09 +00:00

9 lines
243 B
LLVM

; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'add %ESP, 8'
declare fastcc void %func(int %X, long %Y)
fastcc void %caller(int, long) {
tail call fastcc void %func(int 1234567890, long 0)
ret void
}