diff options
author | Jeremy Morse <jeremy.morse@sony.com> | 2025-07-15 15:34:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-15 15:34:10 +0100 |
commit | 57a5f9c47e063701ac7d13a5efd993e839e148eb (patch) | |
tree | e0b6bac122d092b31be4f204c5998a8add1accc3 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | 8db92a7d99f2b1a64d34c2fe3c295e555caa35f2 (diff) | |
download | llvm-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/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 9bbb89e..70a9788 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -7328,7 +7328,7 @@ bool CodeGenPrepare::optimizeLoadExt(LoadInst *Load) { !TLI->isLoadExtLegal(ISD::ZEXTLOAD, LoadResultVT, TruncVT)) return false; - IRBuilder<> Builder(Load->getNextNonDebugInstruction()); + IRBuilder<> Builder(Load->getNextNode()); auto *NewAnd = cast<Instruction>( Builder.CreateAnd(Load, ConstantInt::get(Ctx, DemandBits))); // Mark this instruction as "inserted by CGP", so that other |