[PATCH] D100525: [Greedy RA] Add a check to MachineVerifier

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 16 15:32:00 PDT 2021


rnk accepted this revision.
rnk added a comment.
This revision is now accepted and ready to land.

lgtm with a nit



================
Comment at: llvm/lib/CodeGen/MachineVerifier.cpp:2976
+      // Predecessor of landing pad live-out on last call.
+      if (MFI->isEHPad())
+        for (auto I = Pred->rbegin(), E = Pred->rend(); I != E; ++I) {
----------------
This isEHPad if should use braces as well by the same style rule.


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

https://reviews.llvm.org/D100525



More information about the llvm-commits mailing list