diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index bb30570395a..698e72539a7 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -1015,7 +1015,12 @@ void Argument::print(std::ostream &o) const { o << getType() << " " << getName(); } +// Value::dump - allow easy printing of Values from the debugger. +// Located here because so much of the needed functionality is here. void Value::dump() const { print(std::cerr); } + +// Type::dump - allow easy printing of Values from the debugger. +// Located here because so much of the needed functionality is here. void Type::dump() const { print(std::cerr); } //===----------------------------------------------------------------------===//