[llvm] [ARM] Fix MRC cp10 and cp11 warning (PR #126407)

Oliver Stannard via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 01:36:40 PST 2025


================
@@ -77,8 +77,8 @@ static bool getMCRDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
 static bool getMRCDeprecationInfo(MCInst &MI, const MCSubtargetInfo &STI,
                                   std::string &Info) {
   if (STI.hasFeature(llvm::ARM::HasV7Ops) &&
-      ((MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 10) ||
-       (MI.getOperand(0).isImm() && MI.getOperand(0).getImm() == 11))) {
+      ((MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 10) ||
+       (MI.getOperand(1).isImm() && MI.getOperand(1).getImm() == 11))) {
----------------
ostannard wrote:

This looks correct to me. Output operands always come first in `MCInst`, so MRC has the destination register first, but MCR has it third, matching the assembly syntax.

https://github.com/llvm/llvm-project/pull/126407


More information about the llvm-commits mailing list