http://llvm.org/bugs/show_bug.cgi?id=10921
Summary: [VECTOR-SELECT] needed to implement integer-promotion
of the vselect node
Product: libraries
Version: trunk
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P
Component: Core LLVM classes
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
For example, the test below would fail without it.
define void@vsel_i8(<4 x i8>* %v1, <4 x i8>* %v2) {
%A = load <4 x i8>* %v1
%B = load <4 x i8>* %v2
%vsel = select <4 x i1> <i1 true, i1 false, i1 false, i1 false>, <4 x i8> %A,
<4 x i8> %B
store <4 x i8 > %vsel, <4 x i8>* %v1
ret void
}
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs