search for: 2700a443

Displaying 2 results from an estimated 2 matches for "2700a443".

2012 Nov 22
0
[LLVMdev] Set the minimum number of allocated bits for a variable
...igging inside the arrays, vectors and structures to check the type of each element. Looking forward to receiving your suggestions. Thank you, Alexandra -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121122/2700a443/attachment.html>
2012 Nov 22
2
[LLVMdev] Set the minimum number of allocated bits for a variable
Hi, I would like to force the minimum number of bits allocated for a variable in memory to be 16. From what I have seen, i1 is already represented on 8 bits. So, the only change would be to represent i1 and i8 on 16 bits, as all other types already fulfill this condition. TargetData can help by setting a higher alignment, thus although the type is i1 or i8, the number of allocated bits is 16.