diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-09-11 19:06:04 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-09-11 19:06:04 +0000 |
commit | 4c3b514da0784bf341eb50dd2b376939ca42b682 (patch) | |
tree | 3bb80365738a6aa961115c3266ded1eb5464eed2 /llvm/test/CodeGen/X86/compact-unwind.ll | |
parent | fa7b0b87673a4696c938a6b154cc3c3d58ac4ad2 (diff) | |
download | bcm5719-llvm-4c3b514da0784bf341eb50dd2b376939ca42b682.tar.gz bcm5719-llvm-4c3b514da0784bf341eb50dd2b376939ca42b682.zip |
Try to fix the atom buildbots by adding an explicit 'cpu' to the 'llc' command.
llvm-svn: 190541
Diffstat (limited to 'llvm/test/CodeGen/X86/compact-unwind.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/compact-unwind.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/compact-unwind.ll b/llvm/test/CodeGen/X86/compact-unwind.ll index 0d02f61b2f8..9d3a1257288 100644 --- a/llvm/test/CodeGen/X86/compact-unwind.ll +++ b/llvm/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 |