diff options
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp index 0ab9ea87c23..1e5b7f18958 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp @@ -109,3 +109,11 @@ void DwarfFile::addScopeLabel(LexicalScope *LS, DbgLabel *Label) { SmallVectorImpl<DbgLabel *> &Labels = ScopeLabels[LS]; Labels.push_back(Label); } + +std::pair<uint32_t, RangeSpanList *> +DwarfFile::addRange(const MCSymbol *&CUBaseAddress, + SmallVector<RangeSpan, 2> R) { + CURangeLists.push_back(RangeSpanList(Asm->createTempSymbol("debug_ranges"), + CUBaseAddress, std::move(R))); + return std::make_pair(CURangeLists.size() - 1, &CURangeLists.back()); +} |