Document a couple functions.
authorReid Spencer <rspencer@reidspencer.com>
Tue, 25 May 2004 18:14:38 +0000 (18:14 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Tue, 25 May 2004 18:14:38 +0000 (18:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13761 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index bb30570395a9afc86030f6c76a6749518e54a69b..698e72539a733a05ed664ba82bf683346009f0af 100644 (file)
@@ -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); }
 
 //===----------------------------------------------------------------------===//