File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/lib/Target/ARM/AsmParser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3373,12 +3373,12 @@ class ARMOperand : public MCParsedAsmOperand {
3373
3373
3374
3374
void addMSRMaskOperands (MCInst &Inst, unsigned N) const {
3375
3375
assert (N == 1 && " Invalid number of operands!" );
3376
- Inst.addOperand (MCOperand::createImm (unsigned ( getMSRMask () )));
3376
+ Inst.addOperand (MCOperand::createImm (getMSRMask ()));
3377
3377
}
3378
3378
3379
3379
void addBankedRegOperands (MCInst &Inst, unsigned N) const {
3380
3380
assert (N == 1 && " Invalid number of operands!" );
3381
- Inst.addOperand (MCOperand::createImm (unsigned ( getBankedReg () )));
3381
+ Inst.addOperand (MCOperand::createImm (getBankedReg ()));
3382
3382
}
3383
3383
3384
3384
void addProcIFlagsOperands (MCInst &Inst, unsigned N) const {
You can’t perform that action at this time.
0 commit comments