[PATCH] D148385: [RISCV] Implement KCFI operand bundle lowering for RV64

Nick Desaulniers via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 17 14:13:20 PDT 2023


nickdesaulniers added inline comments.


================
Comment at: llvm/lib/Target/RISCV/RISCVKCFI.cpp:106-107
+  for (MachineBasicBlock &MBB : MF) {
+    for (MachineBasicBlock::instr_iterator MII = MBB.instr_begin(),
+                                           MIE = MBB.instr_end();
+         MII != MIE; ++MII) {
----------------
for (MachineInstr &MI : MBB)


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D148385/new/

https://reviews.llvm.org/D148385



More information about the cfe-commits mailing list