[PATCH] D153791: [MachineInst] Bump NumOperands back up to 24bits
Nikita Popov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jun 26 13:12:50 PDT 2023
nikic added inline comments.
================
Comment at: llvm/include/llvm/CodeGen/MachineInstr.h:137
+ uint8_t AsmPrinterFlags : LLVM_MID_ASMPRINTERFLAGS_BITS;
+ })
+ Detail = {0, 0, 0};
----------------
Why do we need the packed struct wrapper here? Doesn't defining these bitfields directly in the class work?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153791/new/
https://reviews.llvm.org/D153791
More information about the llvm-commits
mailing list