1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Attempt to fix buildbots by giving an explicit output to the llvm-mc command.

llvm-svn: 190349
This commit is contained in:
Bill Wendling 2013-09-09 20:22:38 +00:00
parent 10cf877e75
commit 5dadcab742
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
; 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: | llvm-mc -filetype=obj \
; RUN: | llvm-mc -filetype=obj -o - \
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
; RUN: | FileCheck -check-prefix=FROM-ASM %s

View File

@ -2,7 +2,7 @@
; RUN: | llvm-objdump -triple x86_64-apple-macosx10.8.0 -s - \
; RUN: | FileCheck -check-prefix=CU %s
; RUN: llc < %s -mtriple x86_64-apple-darwin11 \
; RUN: | llvm-mc -filetype=obj \
; RUN: | llvm-mc -filetype=obj -o - \
; RUN: | llvm-objdump -triple x86_64-apple-darwin11 -s - \
; RUN: | FileCheck -check-prefix=FROM-ASM %s