new testcase

llvm-svn: 21989
This commit is contained in:
Chris Lattner 2005-05-13 22:15:26 +00:00
parent 2267d67941
commit 5900197232
1 changed files with 7 additions and 0 deletions

View File

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