[PATCH] D108837: [SimplifyCFG] Ignore free instructions when computing cost for folding branch to common dest
Arthur Eubanks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 27 14:06:42 PDT 2021
aeubanks added a comment.
vector-reductions-logical.ll looks bad, will need investigation
================
Comment at: llvm/lib/Transforms/Utils/SimplifyCFG.cpp:3230
// Ignore dbg intrinsics, and the terminator.
if (isa<DbgInfoIntrinsic>(I) || isa<BranchInst>(I))
continue;
----------------
xbolva00 wrote:
> Skip also AssumeInst?
should be handled with the new code
and actually, same with DbgInfoIntrinsic, which I've updated
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D108837/new/
https://reviews.llvm.org/D108837
More information about the llvm-commits
mailing list