aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:19:28 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-02-22 07:19:28 +0000
commit39109a3ce9424a09787f353d35e942bb4903643e (patch)
tree3e089507cdd42cbec85227851f6e6f0c093e283a /test
parent007b2b3c7e7ea837ed1a95fb79fac05677751250 (diff)
downloadexternal_llvm-39109a3ce9424a09787f353d35e942bb4903643e.zip
external_llvm-39109a3ce9424a09787f353d35e942bb4903643e.tar.gz
external_llvm-39109a3ce9424a09787f353d35e942bb4903643e.tar.bz2
Relax expressions and add explicit triplets -linux and -win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126198 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/codegen-prepare-extload.ll5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/X86/codegen-prepare-extload.ll b/test/CodeGen/X86/codegen-prepare-extload.ll
index 9f57d53..14df815 100644
--- a/test/CodeGen/X86/codegen-prepare-extload.ll
+++ b/test/CodeGen/X86/codegen-prepare-extload.ll
@@ -1,10 +1,11 @@
-; RUN: llc < %s -march=x86-64 | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-win64 | FileCheck %s
; rdar://7304838
; CodeGenPrepare should move the zext into the block with the load
; so that SelectionDAG can select it with the load.
-; CHECK: movzbl (%rdi), %eax
+; CHECK: movzbl ({{%rdi|%rcx}}), %eax
define void @foo(i8* %p, i32* %q) {
entry: