diff options
author | Stephen Tozer <stephen.tozer@sony.com> | 2024-03-20 13:11:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 13:11:28 +0000 |
commit | bdc77d1ecc9219dfc641aaaa4fb088233e9a32d1 (patch) | |
tree | f113a9a1bd70e885eb905667635ebf02cd79a96b /llvm/lib/Bitcode/Reader/BitcodeReader.cpp | |
parent | 6c1d4454ad00414cf20f9a69e04856de99f6bf1d (diff) | |
download | llvm-bdc77d1ecc9219dfc641aaaa4fb088233e9a32d1.zip llvm-bdc77d1ecc9219dfc641aaaa4fb088233e9a32d1.tar.gz llvm-bdc77d1ecc9219dfc641aaaa4fb088233e9a32d1.tar.bz2 |
[RemoveDIs][NFC] Rename DPLabel->DbgLabelRecord (#85918)
This patch renames DPLabel to DbgLabelRecord, in accordance with the
ongoing DbgRecord rename. This rename was fairly trivial, since DPLabel
isn't as widely used as DPValue and has no real conflicts in either its
full or abbreviated name. As usual, the entire replacement was done
automatically, with `s/DPLabel/DbgLabelRecord/` and `s/DPL/DLR/`.
Diffstat (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index fa7038a..3fc8141 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -6426,14 +6426,15 @@ Error BitcodeReader::parseFunctionBody(Function *F) { break; } case bitc::FUNC_CODE_DEBUG_RECORD_LABEL: { - // DPLabels are placed after the Instructions that they are attached to. + // DbgLabelRecords are placed after the Instructions that they are + // attached to. Instruction *Inst = getLastInstruction(); if (!Inst) return error("Invalid dbg record: missing instruction"); DILocation *DIL = cast<DILocation>(getFnMetadataByID(Record[0])); DILabel *Label = cast<DILabel>(getFnMetadataByID(Record[1])); Inst->getParent()->insertDbgRecordBefore( - new DPLabel(Label, DebugLoc(DIL)), Inst->getIterator()); + new DbgLabelRecord(Label, DebugLoc(DIL)), Inst->getIterator()); continue; // This isn't an instruction. } case bitc::FUNC_CODE_DEBUG_RECORD_VALUE_SIMPLE: |