diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-09-02 03:45:58 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2010-09-02 03:45:58 +0000 |
commit | b51633b476b9d4bb62f9b92fe37a777423b0589a (patch) | |
tree | 26d4800e3f78d7cc9102a46e48719f77d85d01d5 | |
parent | fd03a5124d2160fc3db387e32b9202035b6826a9 (diff) | |
download | external_llvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.zip external_llvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.tar.gz external_llvm-b51633b476b9d4bb62f9b92fe37a777423b0589a.tar.bz2 |
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
-rw-r--r-- | test/CodeGen/X86/loop-strength-reduce4.ll | 4 |
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 6c0eb8c..6556fde 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. |