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

Bill Wendling isanbard at gmail.com
Mon Sep 9 13:22:38 PDT 2013


Author: void
Date: Mon Sep  9 15:22:38 2013
New Revision: 190349

URL: http://llvm.org/viewvc/llvm-project?rev=190349&view=rev
Log:
Attempt to fix buildbots by giving an explicit output to the llvm-mc command.

Modified:
    llvm/trunk/test/CodeGen/X86/compact-unwind.ll
    llvm/trunk/test/CodeGen/X86/no-compact-unwind.ll

Modified: llvm/trunk/test/CodeGen/X86/compact-unwind.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/compact-unwind.ll?rev=190349&r1=190348&r2=190349&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/compact-unwind.ll (original)
+++ llvm/trunk/test/CodeGen/X86/compact-unwind.ll Mon Sep  9 15:22:38 2013
@@ -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
 

Modified: llvm/trunk/test/CodeGen/X86/no-compact-unwind.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/no-compact-unwind.ll?rev=190349&r1=190348&r2=190349&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/no-compact-unwind.ll (original)
+++ llvm/trunk/test/CodeGen/X86/no-compact-unwind.ll Mon Sep  9 15:22:38 2013
@@ -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
 





More information about the llvm-commits mailing list