diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-18 23:48:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-18 23:48:54 +0000 |
commit | 120e07f8b5a28f5b1d1d92ed2c6cc1c565d33a25 (patch) | |
tree | 8e6227501b07f591b9210310adb13c7c3926530b | |
parent | 21495775e710d37003e100862cdc647cbdc3b999 (diff) |
update testcases for x86 fastcc changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26842 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-pass-in-regs.ll | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fast-cc-callee-pops.ll b/test/CodeGen/X86/fast-cc-callee-pops.ll index 959a14b4c1..633e7c4868 100644 --- a/test/CodeGen/X86/fast-cc-callee-pops.ll +++ b/test/CodeGen/X86/fast-cc-callee-pops.ll @@ -1,4 +1,4 @@ -; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'ret 20' +; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'ret 28' ; Check that a fastcc function pops its stack variables before returning. diff --git a/test/CodeGen/X86/fast-cc-pass-in-regs.ll b/test/CodeGen/X86/fast-cc-pass-in-regs.ll index 43f6493941..c9f9cee703 100644 --- a/test/CodeGen/X86/fast-cc-pass-in-regs.ll +++ b/test/CodeGen/X86/fast-cc-pass-in-regs.ll @@ -1,7 +1,9 @@ ; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc | grep 'mov %EDX, 1' - ; check that fastcc is passing stuff in regs. +; Argument reg passing is disabled due to regalloc issues. FIXME! +; XFAIL: * + declare fastcc long %callee(long) long %caller() { |