Make sure this is not eligible for tail-call-elimination so that we test
[oota-llvm.git] / test / CodeGen / X86 / fast-cc-merge-stack-adj.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc  | grep 'add %ESP, 8'
2
3 declare fastcc void %func(int *%X, long %Y)
4
5 fastcc void %caller(int, long) {
6         %X = alloca int
7         call fastcc void %func(int* %X, long 0)   ;; not a tail call
8         ret void
9 }