[PATCH] D55357: [LoopSimplifyCFG] Do not deal with loops with irreducible CFG inside
    Max Kazantsev via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Dec  6 20:41:52 PST 2018
    
    
  
mkazantsev marked an inline comment as done.
mkazantsev added inline comments.
================
Comment at: lib/Transforms/Scalar/LoopSimplifyCFG.cpp:161
+      for (auto *Succ : successors(BB))
+        // Must be a backedge, otherwise we are dealing with irreducle non-loop
+        // cycle.
----------------
typo: irreducle --> irreducible, will fix before commit.
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D55357/new/
https://reviews.llvm.org/D55357
    
    
More information about the llvm-commits
mailing list