From fa452c05504ebee698e00050d04e1a43b0f21045 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 25 May 2004 18:14:38 +0000 Subject: [PATCH] Document a couple functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13761 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/AsmWriter.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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); } //===----------------------------------------------------------------------===// -- 2.34.1