We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c8ddf commit 1f82a27Copy full SHA for 1f82a27
llvm/lib/Transforms/Coroutines/CoroFrame.cpp
@@ -2527,10 +2527,6 @@ void coro::salvageDebugInfo(
2527
Expr = DIExpression::prepend(Expr, DIExpression::DerefBefore);
2528
} else if (auto *StInst = dyn_cast<StoreInst>(Inst)) {
2529
Storage = StInst->getOperand(0);
2530
- } else if (auto *I2PInst = dyn_cast<llvm::IntToPtrInst>(Inst)) {
2531
- Storage = I2PInst->getOperand(0);
2532
- } else if (auto *P2IInst = dyn_cast<llvm::PtrToIntInst>(Inst)) {
2533
- Storage = P2IInst->getOperand(0);
2534
} else if (auto *IInst = dyn_cast<llvm::IntrinsicInst>(Inst)) {
2535
if (IInst->getIntrinsicID() == Intrinsic::ptrauth_auth)
2536
Storage = IInst->getArgOperand(0);
0 commit comments