fastcc -> fastcall
authorChris Lattner <sabre@nondot.org>
Wed, 28 Feb 2007 18:21:50 +0000 (18:21 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 28 Feb 2007 18:21:50 +0000 (18:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34747 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/fast-cc-callee-pops.ll
test/CodeGen/X86/fast-cc-merge-stack-adj.ll

index ab0d488b2d6cc81bb542ba40b362316d450153e1..d4d3408fd2e6adb2d6c47cee49d1e542ea3f7ea1 100644 (file)
@@ -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
 }
index e6cd0f0da94b2535bef9504582049e804a6044a6..cc4888962539db8ab354e8907c09a5934992dd1b 100644 (file)
@@ -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
 }