diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-22 22:47:44 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-22 22:47:44 +0000 |
commit | e8b5e49ffd3f21f80bceab0f9baeb35331106d55 (patch) | |
tree | a425f5b442d5e8eb03d0bf0cb4d9d9ee61ff707f /llvm/lib/IR/AsmWriter.cpp | |
parent | 7e6d573e87f3f8f912ab6d86857759e4b99e239e (diff) | |
download | bcm5719-llvm-e8b5e49ffd3f21f80bceab0f9baeb35331106d55.tar.gz bcm5719-llvm-e8b5e49ffd3f21f80bceab0f9baeb35331106d55.zip |
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.
llvm-svn: 226874
Diffstat (limited to 'llvm/lib/IR/AsmWriter.cpp')
-rw-r--r-- | llvm/lib/IR/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp index 56355cc913c..d52ac87c983 100644 --- a/llvm/lib/IR/AsmWriter.cpp +++ b/llvm/lib/IR/AsmWriter.cpp @@ -1286,7 +1286,7 @@ raw_ostream &operator<<(raw_ostream &OS, FieldSeparator &FS) { } } // end namespace -static void writeGenericDwarfNode(raw_ostream &, const GenericDwarfNode *, +static void writeGenericDebugNode(raw_ostream &, const GenericDebugNode *, TypePrinting *, SlotTracker *, const Module *) { llvm_unreachable("Unimplemented write"); |