Eliminate enable-x86-fastcc

llvm-svn: 34753
This commit is contained in:
Chris Lattner 2007-02-28 18:38:58 +00:00
parent c46bf3577d
commit debe91c78a
5 changed files with 5 additions and 6 deletions

View File

@ -1,5 +1,5 @@
; XFAIL: *
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -enable-x86-fastcc | grep 'jmp \*ecx'
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 | grep 'jmp \*ecx'
declare int %putchar(int)
int %main(){

View File

@ -1,5 +1,4 @@
; RUN: llvm-upgrade < %s | llvm-as | llc &&
; RUN: llvm-upgrade < %s | llvm-as | llc -enable-x86-fastcc
; RUN: llvm-upgrade < %s | llvm-as | llc
; PR933
fastcc bool %test() {

View File

@ -1,4 +1,4 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc -mcpu=yonah | grep 'ret 28'
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel -mcpu=yonah | grep 'ret 28'
; Check that a fastcc function pops its stack variables before returning.

View File

@ -1,4 +1,4 @@
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'add ESP, 8'
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | grep 'add ESP, 8'
target triple = "i686-pc-linux-gnu"

View File

@ -1,5 +1,5 @@
; XFAIL: *
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | not grep call
; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel | not grep call
fastcc int %bar(int %X, int(double, int) *%FP) {
%Y = tail call fastcc int %FP(double 0.0, int %X)