Displaying 1 result from an estimated 1 matches for "retthree".
Did you mean:
ret_tree
2010 Mar 10
1
[LLVMdev] Vectors of length 3 as first-class types
I'm trying the following code on X86:
define <3 x i32> @retThree( ) {
ret <3 x i32> <i32 1, i32 2, i32 3 >
}
expecting it to load the three first lanes of %xmm0. (If returning a
vector of four, %xmm0 is used). But the generated assembly seems to be
using the method of return by hidden pointer. This despite that the
generated assembly seems to h...