[PATCH] D75185: [RDA] Track implicit-defs

Sjoerd Meijer via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 28 02:08:57 PST 2020


SjoerdMeijer added inline comments.


================
Comment at: llvm/lib/Target/ARM/ARMLowOverheadLoops.cpp:820
+  for (auto I = MachineBasicBlock::iterator(MI), E = MBB->end(); I != E; ++I) {
+    if (I->getOpcode() == ARM::t2LoopEnd) {
+      Ignore.insert(&*I);
----------------
Do we need to start looking again for `t2LoopEnd`? Is that not saved to `End`, do we have access to that?


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

https://reviews.llvm.org/D75185





More information about the llvm-commits mailing list