forked from OSchip/llvm-project
Try to fix the atom buildbots by adding an explicit 'cpu' to the 'llc' command.
llvm-svn: 190541
This commit is contained in:
parent
fa7b0b8767
commit
4c3b514da0
|
@ -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 -mcpu corei7 | 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 -filetype=obj -o - \
|
||||||
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
||||||
; RUN: | FileCheck -check-prefix=CU %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-mc -triple x86_64-apple-darwin11 -filetype=obj -o - \
|
||||||
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
||||||
; RUN: | FileCheck -check-prefix=FROM-ASM %s
|
; RUN: | FileCheck -check-prefix=FROM-ASM %s
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; RUN: llc < %s -mtriple x86_64-apple-macosx10.8.0 -filetype=obj -o - \
|
; RUN: llc < %s -mtriple x86_64-apple-macosx10.8.0 -mcpu corei7 -filetype=obj -o - \
|
||||||
; RUN: | llvm-objdump -triple x86_64-apple-macosx10.8.0 -s - \
|
; RUN: | llvm-objdump -triple x86_64-apple-macosx10.8.0 -s - \
|
||||||
; RUN: | FileCheck -check-prefix=CU %s
|
; RUN: | FileCheck -check-prefix=CU %s
|
||||||
; RUN: llc < %s -mtriple x86_64-apple-darwin11 \
|
; RUN: llc < %s -mtriple x86_64-apple-darwin11 -mcpu corei7 \
|
||||||
; RUN: | llvm-mc -triple x86_64-apple-darwin11 -filetype=obj -o - \
|
; RUN: | llvm-mc -triple x86_64-apple-darwin11 -filetype=obj -o - \
|
||||||
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
|
||||||
; RUN: | FileCheck -check-prefix=FROM-ASM %s
|
; RUN: | FileCheck -check-prefix=FROM-ASM %s
|
||||||
|
|
Loading…
Reference in New Issue