[PATCH] D150384: [CodeGenPrepare] Fix for using outdated/corrupt LoopInfo

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 1 10:51:10 PDT 2023


efriedma added inline comments.


================
Comment at: llvm/lib/CodeGen/CodeGenPrepare.cpp:592
+      if (VerifyLoopInfo)
+        LI->verify(getDT(F));
+#endif
----------------
Doing this for every basic block is going to get way too expensive, even for something labeled "expensive".


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

https://reviews.llvm.org/D150384



More information about the llvm-commits mailing list