Displaying 1 result from an estimated 1 matches for "the_vector".
Did you mean:
one_vector
2010 Apr 07
1
[LLVMdev] Patch - SPU bss alignment
...oundaries. This causes misaligned loads,
as the generated assembly assumes this "default" alignment.
A patch to disable .lcomm in favour of '.local .comm' is attached.
kalle
P.s.
As an example, the following function returns '3', when '5' is expected:
; cause the_vector to not be aligned on natural (16 byte) bounds
@misaligner = internal global i32 zeroinitializer
@the_vector = internal global <6 x i32> zeroinitializer
define i32 @align_test() {
store <6 x i32> <i32 1, i32 2, i32 3, i32 4, i32 5, i32 6>, <6 x i32>*
@the_vector
%load...