[PATCH] D111353: [SCEV] Extend ability to infer flags to more complicates scopes
Max Kazantsev via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 7 22:11:05 PDT 2021
mkazantsev added inline comments.
================
Comment at: llvm/lib/Analysis/ScalarEvolution.cpp:6847
for (auto &I : *BB) {
- if (!isGuaranteedToTransferExecutionToSuccessor(&I))
- LP.HasNoAbnormalExits = false;
+ if (!llvm::isGuaranteedToTransferExecutionToSuccessor(&I))
+ Local.HasNoAbnormalExits = false;
----------------
Does it handle `invoke` terminator correctly?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111353/new/
https://reviews.llvm.org/D111353
More information about the llvm-commits
mailing list