From 5dadcab742591bac7c8708e045a1e94df00f604f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 9 Sep 2013 20:22:38 +0000 Subject: [PATCH] Attempt to fix buildbots by giving an explicit output to the llvm-mc command. llvm-svn: 190349 --- test/CodeGen/X86/compact-unwind.ll | 2 +- test/CodeGen/X86/no-compact-unwind.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/X86/compact-unwind.ll b/test/CodeGen/X86/compact-unwind.ll index e1c51c7de11..e15949bb0d5 100644 --- a/test/CodeGen/X86/compact-unwind.ll +++ b/test/CodeGen/X86/compact-unwind.ll @@ -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 diff --git a/test/CodeGen/X86/no-compact-unwind.ll b/test/CodeGen/X86/no-compact-unwind.ll index fcc85371dfe..16fd7bcb9c6 100644 --- a/test/CodeGen/X86/no-compact-unwind.ll +++ b/test/CodeGen/X86/no-compact-unwind.ll @@ -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