[llvm] InstCombine: Remove a check for pointer bitcasts (PR #128491)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 03:42:18 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();
----------------
nikic wrote:

Inline the lambda, now that it's trivial?

https://github.com/llvm/llvm-project/pull/128491


More information about the llvm-commits mailing list