Skip to content

Commit 1f82a27

Browse files
committed
Adapt to upstream changes
1 parent 88c8ddf commit 1f82a27

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

llvm/lib/Transforms/Coroutines/CoroFrame.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2527,10 +2527,6 @@ void coro::salvageDebugInfo(
25272527
Expr = DIExpression::prepend(Expr, DIExpression::DerefBefore);
25282528
} else if (auto *StInst = dyn_cast<StoreInst>(Inst)) {
25292529
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);
25342530
} else if (auto *IInst = dyn_cast<llvm::IntrinsicInst>(Inst)) {
25352531
if (IInst->getIntrinsicID() == Intrinsic::ptrauth_auth)
25362532
Storage = IInst->getArgOperand(0);

0 commit comments

Comments
 (0)