diff options
-rw-r--r-- | llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/2008-09-11-CoalescerBug2.ll | 2 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/zext-fold.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll b/llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll index ff30f6d7f7f..eae0ec21c09 100644 --- a/llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll +++ b/llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll @@ -1,5 +1,5 @@ ; REQUIRES: asserts -; RUN: llc < %s -march=x86 -relocation-model=static -stats 2>&1 | \ +; RUN: llc < %s -mtriple=i686-unknown-linux -relocation-model=static -stats 2>&1 | \ ; RUN: grep asm-printer | grep 15 ; ; It's possible to schedule this in 14 instructions by avoiding diff --git a/llvm/test/CodeGen/X86/2008-09-11-CoalescerBug2.ll b/llvm/test/CodeGen/X86/2008-09-11-CoalescerBug2.ll index 757dff4230f..9646650ae15 100644 --- a/llvm/test/CodeGen/X86/2008-09-11-CoalescerBug2.ll +++ b/llvm/test/CodeGen/X86/2008-09-11-CoalescerBug2.ll @@ -1,5 +1,5 @@ ; RUN: llc < %s -march=x86 -; RUN: llc -pre-RA-sched=source < %s -march=x86 -mcpu=corei7 | FileCheck %s --check-prefix=SOURCE-SCHED +; RUN: llc -pre-RA-sched=source < %s -mtriple=i686-unknown-linux -mcpu=corei7 | FileCheck %s --check-prefix=SOURCE-SCHED ; PR2748 @g_73 = external global i32 ; <i32*> [#uses=1] diff --git a/llvm/test/CodeGen/X86/zext-fold.ll b/llvm/test/CodeGen/X86/zext-fold.ll index f3709e8ddd0..6aca4f40f0a 100644 --- a/llvm/test/CodeGen/X86/zext-fold.ll +++ b/llvm/test/CodeGen/X86/zext-fold.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -mcpu=generic -march=x86 -enable-misched=false | FileCheck %s +; RUN: llc < %s -mtriple=i686-unknown-linux -enable-misched=false | FileCheck %s ;; Simple case define i32 @test1(i8 %x) nounwind readnone { |