mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-07 02:56:52 +00:00
Change MachineOperand::OpKind from unsigned char to a bitfield. NFC.
This causes OpKind and all the bitfields after it to use 32-bit load/stores instead of i24's for the existing bitfields. Bugs will be filed to track whether clang and llvm could have generated the 32-bit operations in the front-end or optimizer. Reviewed by Rafael. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235528 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
440ae31b1c
commit
3965744216
@ -65,7 +65,7 @@ public:
|
||||
private:
|
||||
/// OpKind - Specify what kind of operand this is. This discriminates the
|
||||
/// union.
|
||||
MachineOperandType OpKind;
|
||||
MachineOperandType OpKind : 8;
|
||||
|
||||
/// Subregister number for MO_Register. A value of 0 indicates the
|
||||
/// MO_Register has no subReg.
|
||||
|
Loading…
x
Reference in New Issue
Block a user