diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/fast-cc-callee-pops.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/fast-cc-callee-pops.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/fast-cc-callee-pops.ll b/llvm/test/CodeGen/X86/fast-cc-callee-pops.ll index c1bbf7beccd..9b03634b853 100644 --- a/llvm/test/CodeGen/X86/fast-cc-callee-pops.ll +++ b/llvm/test/CodeGen/X86/fast-cc-callee-pops.ll @@ -1,8 +1,8 @@ -; RUN: llvm-upgrade < %s | llvm-as | \ +; RUN: llvm-as < %s | \ ; RUN: llc -march=x86 -x86-asm-syntax=intel -mcpu=yonah | grep {ret 20} ; Check that a fastcc function pops its stack variables before returning. -x86_fastcallcc void %func(long %X, long %Y, float %G, double %Z) { - ret void +define x86_fastcallcc void @func(i64 %X, i64 %Y, float %G, double %Z) { + ret void } |