From 8822f48f72f5b0ed8a265d535dc146d1ebef721f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 11 Sep 2013 19:06:04 +0000 Subject: [PATCH] Try to fix the atom buildbots by adding an explicit 'cpu' to the 'llc' command. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190541 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/compact-unwind.ll | 6 +++--- test/CodeGen/X86/no-compact-unwind.ll | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/CodeGen/X86/compact-unwind.ll b/test/CodeGen/X86/compact-unwind.ll index 0d02f61b2f8..9d3a1257288 100644 --- a/test/CodeGen/X86/compact-unwind.ll +++ b/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 diff --git a/test/CodeGen/X86/no-compact-unwind.ll b/test/CodeGen/X86/no-compact-unwind.ll index 1cd9fd4fabe..991cd4ed736 100644 --- a/test/CodeGen/X86/no-compact-unwind.ll +++ b/test/CodeGen/X86/no-compact-unwind.ll @@ -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: | 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-objdump -triple x86_64-apple-darwin11 -s - \ ; RUN: | FileCheck -check-prefix=FROM-ASM %s -- 2.34.1