[llvm] r261807 - Move test/CodeGen/Generic/pr26652.ll to test/CodeGen/X86/pr26652.ll and test it only on X86.
Cong Hou via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 24 16:12:18 PST 2016
Author: conghou
Date: Wed Feb 24 18:12:18 2016
New Revision: 261807
URL: http://llvm.org/viewvc/llvm-project?rev=261807&view=rev
Log:
Move test/CodeGen/Generic/pr26652.ll to test/CodeGen/X86/pr26652.ll and test it only on X86.
Added:
llvm/trunk/test/CodeGen/X86/pr26652.ll
Removed:
llvm/trunk/test/CodeGen/Generic/pr26652.ll
Removed: llvm/trunk/test/CodeGen/Generic/pr26652.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Generic/pr26652.ll?rev=261806&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Generic/pr26652.ll (original)
+++ llvm/trunk/test/CodeGen/Generic/pr26652.ll (removed)
@@ -1,8 +0,0 @@
-; RUN: llc < %s
-
-define <2 x i32> @test(<4 x i32> %a, <4 x i32> %b) {
-entry:
- %0 = or <4 x i32> %a, %b
- %1 = shufflevector <4 x i32> %0, <4 x i32> undef, <2 x i32> <i32 2, i32 3>
- ret <2 x i32> %1
-}
Added: llvm/trunk/test/CodeGen/X86/pr26652.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pr26652.ll?rev=261807&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pr26652.ll (added)
+++ llvm/trunk/test/CodeGen/X86/pr26652.ll Wed Feb 24 18:12:18 2016
@@ -0,0 +1,9 @@
+; RUN: llc < %s -march=x86
+; PR26652
+
+define <2 x i32> @test(<4 x i32> %a, <4 x i32> %b) {
+entry:
+ %0 = or <4 x i32> %a, %b
+ %1 = shufflevector <4 x i32> %0, <4 x i32> undef, <2 x i32> <i32 2, i32 3>
+ ret <2 x i32> %1
+}
More information about the llvm-commits
mailing list