[PATCH] D24860: [ELF] - Linkerscript: Implemented >> and <<
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Fri Sep 23 06:15:59 PDT 2016
>> . = 0x30000 + (1 << 5);
>
>Replace 1 with 0+1 so that we test the precedence.
>
>LGTM with that.
Will that test it ? I think
0x30000 + (0 + (1 << 5)) == 0x30000 + ((0 + 1) << 5)
?
You meant 1+1 probably.
George.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160923/6e4710be/attachment.html>
More information about the llvm-commits
mailing list