llvm-6502/test/CodeGen/X86/fast-cc-callee-pops.ll
Chris Lattner 7d84661210 allow this to pass on non-x86 machines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29303 91177308-0d34-0410-b5e6-96231b3b80d8
2006-07-26 20:44:24 +00:00

8 lines
253 B
LLVM

; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc -mcpu=yonah | grep 'ret 28'
; Check that a fastcc function pops its stack variables before returning.
fastcc void %func(long %X, long %Y, float %G, double %Z) {
ret void
}