[PATCH] D22281: [CodeGen] Refactor MachineMemOperand's Flags enum.
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 12 17:30:29 PDT 2016
MatzeB added a comment.
In http://reviews.llvm.org/D22281#482457, @MatzeB wrote:
> How about something like:
>
> uint16_t Flags : 8;
> uint16_t Align : 8;
>
>
> so we can leave the bit fiddeling to the compiler?
Typo, I meant
uint16_t Flags;
uint16_t Align;
```.
http://reviews.llvm.org/D22281
More information about the llvm-commits
mailing list