diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:51 +0000 | 
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-02-22 07:21:51 +0000 | 
| commit | 384490cbe1ffa91dec3baf6f2122838b61dd2122 (patch) | |
| tree | 9c5a3a891257381aa4a7f16019b553e95cf7bdae | |
| parent | 2a1ca28203eeed232a7ac54adfa400b165c9f829 (diff) | |
| download | bcm5719-llvm-384490cbe1ffa91dec3baf6f2122838b61dd2122.tar.gz bcm5719-llvm-384490cbe1ffa91dec3baf6f2122838b61dd2122.zip  | |
Relax expressions and add explicit triplets -linux and -win32.
llvm-svn: 126215
| -rw-r--r-- | llvm/test/CodeGen/X86/vec_shuffle-37.ll | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/vec_shuffle-37.ll b/llvm/test/CodeGen/X86/vec_shuffle-37.ll index b09093089c5..2efdb14b404 100644 --- a/llvm/test/CodeGen/X86/vec_shuffle-37.ll +++ b/llvm/test/CodeGen/X86/vec_shuffle-37.ll @@ -1,9 +1,10 @@ -; RUN: llc < %s -march=x86-64 | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s +; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s  ; RUN: llc -O0 < %s -march=x86 -mcpu=core2 | FileCheck %s --check-prefix=CHECK_O0  define <4 x i32> @t00(<4 x i32>* %a0) nounwind ssp {  entry: -; CHECK: movaps  (%rdi), %xmm0 +; CHECK: movaps  ({{%rdi|%rcx}}), %xmm0  ; CHECK-NEXT: movaps  %xmm0, %xmm1  ; CHECK-NEXT: movlps  (%rax), %xmm1  ; CHECK-NEXT: shufps  $36, %xmm1, %xmm0  | 

