[llvm] [Xtensa] Implement base CallConvention. (PR #83280)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 8 05:18:29 PST 2024


================
@@ -348,6 +367,67 @@ static SMLoc RefineErrorLoc(const SMLoc Loc, const OperandVector &Operands,
   return Loc;
 }
 
+bool XtensaAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc,
+                                         MCStreamer &Out,
+                                         const MCSubtargetInfo *STI) {
+  Inst.setLoc(IDLoc);
+  const unsigned Opcode = Inst.getOpcode();
+  switch (Opcode) {
+  case Xtensa::L32R: {
+    const MCSymbolRefExpr *OpExpr =
+        (const MCSymbolRefExpr *)Inst.getOperand(1).getExpr();
----------------
arsenm wrote:

Prefer static_cast 

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


More information about the llvm-commits mailing list