[llvm] cf00ac8 - [Hexagon] Call MCExpr::print with valid MAI
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 2 20:29:30 PST 2025
Author: Fangrui Song
Date: 2025-03-02T20:29:24-08:00
New Revision: cf00ac81ac049cddb80aec1d6d88b8fab4f209e8
URL: https://github.com/llvm/llvm-project/commit/cf00ac81ac049cddb80aec1d6d88b8fab4f209e8
DIFF: https://github.com/llvm/llvm-project/commit/cf00ac81ac049cddb80aec1d6d88b8fab4f209e8.diff
LOG: [Hexagon] Call MCExpr::print with valid MAI
operator<< should be avoided when operands with VariantKind are dumped.
This prepares for the upcoming change that moves target-specific
VariantKind printer to MCAsmInfo.
Added:
Modified:
llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
index e4e84a80b5d0b..16b8cec541998 100644
--- a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
+++ b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
@@ -72,7 +72,7 @@ void HexagonInstPrinter::printOperand(MCInst const *MI, unsigned OpNo,
if (MO.getExpr()->evaluateAsAbsolute(Value))
O << formatImm(Value);
else
- O << *MO.getExpr();
+ MO.getExpr()->print(O, &MAI);
} else {
llvm_unreachable("Unknown operand");
}
@@ -90,6 +90,6 @@ void HexagonInstPrinter::printBrtarget(MCInst const *MI, unsigned OpNo,
if (HasExtender || HexagonMCInstrInfo::isConstExtended(MII, *MI))
if (HexagonMCInstrInfo::getExtendableOp(MII, *MI) == OpNo)
O << "##";
- O << Expr;
+ Expr.print(O, &MAI);
}
}
More information about the llvm-commits
mailing list