[PATCH] D22281: [CodeGen] Refactor MachineMemOperand's Flags enum.
Matthias Braun via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 12 20:15:02 PDT 2016
MatzeB added inline comments.
================
Comment at: include/llvm/CodeGen/MachineMemOperand.h:102
@@ +101,3 @@
+ /// via ENABLE_FLAGS_ENUM.
+ enum Flags {
+ // No flags set.
----------------
You could change this to `enum Flags : uint16_t {...}` so that spltting the alignment won't make the MemOperands larger than before.
I assume the MOMaxFlag can is unnecessary as well now?
http://reviews.llvm.org/D22281
More information about the llvm-commits
mailing list