summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/compact-unwind.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-09-11 19:06:04 +0000
committerBill Wendling <isanbard@gmail.com>2013-09-11 19:06:04 +0000
commit8822f48f72f5b0ed8a265d535dc146d1ebef721f (patch)
tree313b7b33e0a63ac2ded01b20163699b70a6c98a3 /test/CodeGen/X86/compact-unwind.ll
parentdc293b3fe9e3cb7eb7ce7035b32218251a06fbfe (diff)
downloadllvm-8822f48f72f5b0ed8a265d535dc146d1ebef721f.tar.gz
llvm-8822f48f72f5b0ed8a265d535dc146d1ebef721f.tar.bz2
llvm-8822f48f72f5b0ed8a265d535dc146d1ebef721f.tar.xz
Try to fix the atom buildbots by adding an explicit 'cpu' to the 'llc' command.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/compact-unwind.ll')
-rw-r--r--test/CodeGen/X86/compact-unwind.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/X86/compact-unwind.ll b/test/CodeGen/X86/compact-unwind.ll
index 0d02f61b2f..9d3a125728 100644
--- a/test/CodeGen/X86/compact-unwind.ll
+++ b/test/CodeGen/X86/compact-unwind.ll
@@ -1,8 +1,8 @@
-; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 | FileCheck -check-prefix=ASM %s
-; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 -filetype=obj -o - \
+; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 -mcpu corei7 | FileCheck -check-prefix=ASM %s
+; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 -mcpu corei7 -filetype=obj -o - \
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
; RUN: | FileCheck -check-prefix=CU %s
-; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 \
+; RUN: llc < %s -disable-fp-elim -mtriple x86_64-apple-darwin11 -mcpu corei7 \
; RUN: | llvm-mc -triple x86_64-apple-darwin11 -filetype=obj -o - \
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
; RUN: | FileCheck -check-prefix=FROM-ASM %s