diff options
-rw-r--r-- | test/CodeGen/X86/fast-cc-callee-pops.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/X86/fast-cc-merge-stack-adj.ll | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/fast-cc-callee-pops.ll b/test/CodeGen/X86/fast-cc-callee-pops.ll index ab0d488b2d..d4d3408fd2 100644 --- a/test/CodeGen/X86/fast-cc-callee-pops.ll +++ b/test/CodeGen/X86/fast-cc-callee-pops.ll @@ -2,6 +2,6 @@ ; Check that a fastcc function pops its stack variables before returning. -cc65 void %func(long %X, long %Y, float %G, double %Z) { +x86_fastcallcc void %func(long %X, long %Y, float %G, double %Z) { ret void } diff --git a/test/CodeGen/X86/fast-cc-merge-stack-adj.ll b/test/CodeGen/X86/fast-cc-merge-stack-adj.ll index e6cd0f0da9..cc48889625 100644 --- a/test/CodeGen/X86/fast-cc-merge-stack-adj.ll +++ b/test/CodeGen/X86/fast-cc-merge-stack-adj.ll @@ -2,10 +2,10 @@ target triple = "i686-pc-linux-gnu" -declare fastcc void %func(int *%X, long %Y) +declare x86_fastcallcc void %func(int *%X, long %Y) -fastcc void %caller(int, long) { +x86_fastcallcc void %caller(int, long) { %X = alloca int - call fastcc void %func(int* %X, long 0) ;; not a tail call + call x86_fastcallcc void %func(int* %X, long 0) ;; not a tail call ret void } |