diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-28 18:21:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-28 18:21:50 +0000 |
commit | b5d808887aa156a63b8fccbc9c17a20e02daa1df (patch) | |
tree | 8a6d3d37baebcaca54a2210b073e7173a0028435 | |
parent | 08553f9a334bd75ef556c2711a56bc45513bc6ea (diff) |
fastcc -> fastcall
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34747 91177308-0d34-0410-b5e6-96231b3b80d8
-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 ab0d488b2d6..d4d3408fd2e 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 e6cd0f0da94..cc488896253 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 } |