2008-02-21 15:42:26 +08:00
|
|
|
; RUN: llvm-as < %s | \
|
2007-08-01 04:11:57 +08:00
|
|
|
; RUN: llc -march=x86 -x86-asm-syntax=intel -mcpu=yonah | grep {ret 20}
|
2005-05-14 06:15:26 +08:00
|
|
|
|
|
|
|
; Check that a fastcc function pops its stack variables before returning.
|
|
|
|
|
2008-09-04 09:04:15 +08:00
|
|
|
define x86_fastcallcc void @func(i64 %X, i64 %Y, float %G, double %Z) nounwind {
|
2008-02-21 15:42:26 +08:00
|
|
|
ret void
|
2005-05-14 06:15:26 +08:00
|
|
|
}
|