mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
IR: DwarfNode => DebugNode, NFC
These things are potentially used for non-DWARF data (see the discussion in PR22235), so take the `Dwarf` out of the name. Since the new name gives fewer clues, update the doxygen to properly describe what they are. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226874 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -791,7 +791,7 @@ static void WriteMDLocation(const MDLocation *N, const ValueEnumerator &VE,
|
||||
Record.clear();
|
||||
}
|
||||
|
||||
static void WriteGenericDwarfNode(const GenericDwarfNode *,
|
||||
static void WriteGenericDebugNode(const GenericDebugNode *,
|
||||
const ValueEnumerator &, BitstreamWriter &,
|
||||
SmallVectorImpl<uint64_t> &, unsigned) {
|
||||
llvm_unreachable("unimplemented");
|
||||
@ -843,7 +843,7 @@ static void WriteModuleMetadata(const Module *M,
|
||||
}
|
||||
|
||||
unsigned MDTupleAbbrev = 0;
|
||||
unsigned GenericDwarfNodeAbbrev = 0;
|
||||
unsigned GenericDebugNodeAbbrev = 0;
|
||||
SmallVector<uint64_t, 64> Record;
|
||||
for (const Metadata *MD : MDs) {
|
||||
if (const MDNode *N = dyn_cast<MDNode>(MD)) {
|
||||
|
Reference in New Issue
Block a user