[llvm-commits] [llvm] r140257 - /llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll
Nadav Rotem
nadav.rotem at intel.com
Wed Sep 21 10:13:40 PDT 2011
Author: nadav
Date: Wed Sep 21 12:13:40 2011
New Revision: 140257
URL: http://llvm.org/viewvc/llvm-project?rev=140257&view=rev
Log:
add another testcase for pr10902
Modified:
llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll
Modified: llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll?rev=140257&r1=140256&r2=140257&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2011-09-21-setcc-bug.ll Wed Sep 21 12:13:40 2011
@@ -13,3 +13,15 @@
ret void
}
+
+define void @load_256_i8(<256 x i8>* %k, <256 x i8>* %y, <256 x double>* %A1, <256 x double>* %A0) {
+ %A = load <256 x i8>* %k
+ %B = load <256 x i8>* %y
+ %C = load <256 x double>* %A0
+ %D= load <256 x double>* %A1
+ %M = icmp uge <256 x i8> %A, %B
+ %T = select <256 x i1> %M, <256 x double> %C, <256 x double> %D
+ store <256 x double> %T, <256 x double>* undef
+ ret void
+}
+
More information about the llvm-commits
mailing list