aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/IR/Verifier.cpp
diff options
context:
space:
mode:
authorJeremy Morse <jeremy.morse@sony.com>2025-07-15 15:34:10 +0100
committerGitHub <noreply@github.com>2025-07-15 15:34:10 +0100
commit57a5f9c47e063701ac7d13a5efd993e839e148eb (patch)
treee0b6bac122d092b31be4f204c5998a8add1accc3 /llvm/lib/IR/Verifier.cpp
parent8db92a7d99f2b1a64d34c2fe3c295e555caa35f2 (diff)
downloadllvm-57a5f9c47e063701ac7d13a5efd993e839e148eb.zip
llvm-57a5f9c47e063701ac7d13a5efd993e839e148eb.tar.gz
llvm-57a5f9c47e063701ac7d13a5efd993e839e148eb.tar.bz2
[DebugInfo][RemoveDIs] Suppress getNextNonDebugInfoInstruction (#144383)
There are no longer debug-info instructions, thus we don't need this skipping. Horray!
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r--llvm/lib/IR/Verifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index 8004077..dc5373e 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -6541,7 +6541,7 @@ void Verifier::visitIntrinsicCall(Intrinsic::ID ID, CallBase &Call) {
Check(!Call.paramHasAttr(3, Attribute::InReg),
"VGPR arguments must not have the `inreg` attribute", &Call);
- auto *Next = Call.getNextNonDebugInstruction();
+ auto *Next = Call.getNextNode();
bool IsAMDUnreachable = Next && isa<IntrinsicInst>(Next) &&
cast<IntrinsicInst>(Next)->getIntrinsicID() ==
Intrinsic::amdgcn_unreachable;