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 {
33733373
33743374 void addMSRMaskOperands (MCInst &Inst, unsigned N) const {
33753375 assert (N == 1 && " Invalid number of operands!" );
3376- Inst.addOperand (MCOperand::createImm (unsigned ( getMSRMask () )));
3376+ Inst.addOperand (MCOperand::createImm (getMSRMask ()));
33773377 }
33783378
33793379 void addBankedRegOperands (MCInst &Inst, unsigned N) const {
33803380 assert (N == 1 && " Invalid number of operands!" );
3381- Inst.addOperand (MCOperand::createImm (unsigned ( getBankedReg () )));
3381+ Inst.addOperand (MCOperand::createImm (getBankedReg ()));
33823382 }
33833383
33843384 void addProcIFlagsOperands (MCInst &Inst, unsigned N) const {
You can’t perform that action at this time.
0 commit comments