[llvm] InstCombine: Remove a check for pointer bitcasts (PR #128491)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 03:44:54 PST 2025
================
@@ -3661,8 +3661,7 @@ Instruction *InstCombinerImpl::visitUnconditionalBranchInst(BranchInst &BI) {
auto GetLastSinkableStore = [](BasicBlock::iterator BBI) {
auto IsNoopInstrForStoreMerging = [](BasicBlock::iterator BBI) {
- return BBI->isDebugOrPseudoInst() ||
- (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy());
+ return BBI->isDebugOrPseudoInst();
----------------
arsenm wrote:
Wasn't sure if this should be updated to include assumes
https://github.com/llvm/llvm-project/pull/128491
More information about the llvm-commits
mailing list