summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/loop-strength-reduce4.ll
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2010-09-02 03:45:58 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2010-09-02 03:45:58 +0000
commitb51633b476b9d4bb62f9b92fe37a777423b0589a (patch)
tree26d4800e3f78d7cc9102a46e48719f77d85d01d5 /test/CodeGen/X86/loop-strength-reduce4.ll
parentfd03a5124d2160fc3db387e32b9202035b6826a9 (diff)
downloadllvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.tar.gz
llvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.tar.bz2
llvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.tar.xz
test/loop-strength-reduce4: Add explicit triplet for Win32 host.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/loop-strength-reduce4.ll')
-rw-r--r--test/CodeGen/X86/loop-strength-reduce4.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/loop-strength-reduce4.ll b/test/CodeGen/X86/loop-strength-reduce4.ll
index 6c0eb8c0df..6556fdeea8 100644
--- a/test/CodeGen/X86/loop-strength-reduce4.ll
+++ b/test/CodeGen/X86/loop-strength-reduce4.ll
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=x86 -relocation-model=static -mtriple=i686-apple-darwin | FileCheck %s -check-prefix=STATIC
-; RUN: llc < %s -march=x86 -relocation-model=pic | FileCheck %s -check-prefix=PIC
+; RUN: llc < %s -mtriple=i686-apple-darwin -relocation-model=static | FileCheck %s -check-prefix=STATIC
+; RUN: llc < %s -mtriple=i686-apple-darwin -relocation-model=pic | FileCheck %s -check-prefix=PIC
; By starting the IV at -64 instead of 0, a cmp is eliminated,
; as the flags from the add can be used directly.