From: Reid Spencer Date: Tue, 25 May 2004 18:14:38 +0000 (+0000) Subject: Document a couple functions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fa452c05504ebee698e00050d04e1a43b0f21045;p=oota-llvm.git Document a couple functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13761 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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); } //===----------------------------------------------------------------------===//