summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-26 20:44:24 +0000
committerChris Lattner <sabre@nondot.org>2006-07-26 20:44:24 +0000
commit698913e6c5533d0abdc09c58c0d734b94a896037 (patch)
treea2851f7f865e076b1c347029de719f909884b146
parent963ac1486a0bd8e50ae04dc2d68b179f89f892e6 (diff)
downloadllvm-698913e6c5533d0abdc09c58c0d734b94a896037.tar.gz
allow this to pass on non-x86 machines
llvm-svn: 29303
-rw-r--r--llvm/test/Regression/CodeGen/X86/fast-cc-callee-pops.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Regression/CodeGen/X86/fast-cc-callee-pops.ll b/llvm/test/Regression/CodeGen/X86/fast-cc-callee-pops.ll
index 633e7c4868c8..51527ceae162 100644
--- a/llvm/test/Regression/CodeGen/X86/fast-cc-callee-pops.ll
+++ b/llvm/test/Regression/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 28'
+; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel -enable-x86-fastcc -mcpu=yonah | grep 'ret 28'
; Check that a fastcc function pops its stack variables before returning.