[llvm-commits] CVS: llvm/lib/VMCore/AsmWriter.cpp

LLVM llvm at cs.uiuc.edu
Tue May 25 13:17:01 PDT 2004


Changes in directory llvm/lib/VMCore:

AsmWriter.cpp updated: 1.129 -> 1.130

---
Log message:

Document a couple functions.


---
Diffs of the changes:  (+5 -0)

Index: llvm/lib/VMCore/AsmWriter.cpp
diff -u llvm/lib/VMCore/AsmWriter.cpp:1.129 llvm/lib/VMCore/AsmWriter.cpp:1.130
--- llvm/lib/VMCore/AsmWriter.cpp:1.129	Tue May 25 03:52:09 2004
+++ llvm/lib/VMCore/AsmWriter.cpp	Tue May 25 13:14:38 2004
@@ -1015,7 +1015,12 @@
   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); }
 
 //===----------------------------------------------------------------------===//





More information about the llvm-commits mailing list