new testcase
[oota-llvm.git] / test / CodeGen / X86 / fast-cc-callee-pops.ll
1 ; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc  | grep 'ret 20'
2
3 ; Check that a fastcc function pops its stack variables before returning.
4
5 fastcc void %func(long %X, long %Y, float %G, double %Z) {
6         ret void
7 }