[PATCH] D150388: [CodeGen]Allow targets to use target specific COPY instructions for live range splitting

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 15 04:48:51 PDT 2023


arsenm accepted this revision.
arsenm added inline comments.


================
Comment at: llvm/lib/CodeGen/InlineSpiller.cpp:480
          llvm::make_early_inc_range(MRI.use_nodbg_instructions(Reg))) {
-      if (!MI.isCopy() && !MI.mayStore())
+      if (!TII.isCopyInstr(MI) && !MI.mayStore())
         continue;
----------------
swap these checks


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D150388



More information about the llvm-commits mailing list