Index: include/llvm/IR/Metadata.h =================================================================== --- include/llvm/IR/Metadata.h +++ include/llvm/IR/Metadata.h @@ -274,9 +274,6 @@ /// print - Implement operator<< on NamedMDNode. void print(raw_ostream &ROS, AssemblyAnnotationWriter *AAW = 0) const; - /// dump() - Allow printing of NamedMDNodes from the debugger. - void dump() const; - // --------------------------------------------------------------------------- // Operand Iterator interface... // Index: lib/IR/AsmWriter.cpp =================================================================== --- lib/IR/AsmWriter.cpp +++ lib/IR/AsmWriter.cpp @@ -2252,5 +2252,3 @@ // Module::dump() - Allow printing of Modules from the debugger. void Module::dump() const { print(dbgs(), 0); } -// NamedMDNode::dump() - Allow printing of NamedMDNodes from the debugger. -void NamedMDNode::dump() const { print(dbgs(), 0); }