fastcc -> fastcall

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34747 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-02-28 18:21:50 +00:00
parent 08553f9a33
commit b5d808887a
2 changed files with 4 additions and 4 deletions

View 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
}

View 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
}