Displaying 2 results from an estimated 2 matches for "4ad185ae".
2015 Mar 25
2
[LLVMdev] LLD: representation of a power of two value
...t by exponents but by
just numbers in files, so we convert them back and force. "Alignment" is
used for both exponents and actual values there.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150324/4ad185ae/attachment.html>
2015 Mar 25
7
[LLVMdev] LLD: representation of a power of two value
It's not a big deal, but it always annoyed me a bit when I hit it, so I'll
bring it up here.
LLD represents an alignment X as log2(X) in some places and just X in other
places. It's a bit confusing. Because I always think alignments in my mind
in terms of 1, 2, 4, 8, ..., instead of 2^1, 2^2, 2^3, ..., I'd like to
propose to always use real values.
Any objections?
--------------