[PATCH] D123496: [RISCV] Add Stackmap/Statepoint/Patchpoint support without targets
Philip Reames via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 25 15:24:27 PDT 2023
reames accepted this revision.
reames added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp:241
MCInst TmpInst;
- if (!lowerRISCVMachineInstrToMCInst(MI, TmpInst, *this))
- EmitToStreamer(*OutStreamer, TmpInst);
+ switch (MI->getOpcode()) {
+ default:
----------------
You can add the new cases here to the switch above.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D123496/new/
https://reviews.llvm.org/D123496
More information about the llvm-commits
mailing list