[PATCH] D61962: [LoopUnroll] Add support for loops with exiting headers and uncond latches.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Jun 23 08:14:03 PDT 2019
fhahn added inline comments.
================
Comment at: llvm/lib/Transforms/Utils/LoopUnroll.cpp:393
+ HeaderBI->isConditional() &
+ L->contains(HeaderBI->getSuccessor(S1)) &&
+ !L->contains(HeaderBI->getSuccessor(S2));
----------------
paquette wrote:
> indentation is strange here
I've run clang-format, it should be fixed now, thanks!
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D61962/new/
https://reviews.llvm.org/D61962
More information about the llvm-commits
mailing list