summaryrefslogtreecommitdiff
path: root/lib/VMCore
diff options
context:
space:
mode:
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/AsmWriter.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp
index 56653e8fdb..21fb925782 100644
--- a/lib/VMCore/AsmWriter.cpp
+++ b/lib/VMCore/AsmWriter.cpp
@@ -1788,15 +1788,13 @@ void Value::print(std::ostream &O, AssemblyAnnotationWriter *AAW) const {
print(OS, AAW);
}
-// Value::dump - allow easy printing of Values from the debugger.
-// Located here because so much of the needed functionality is here.
+// Value::dump - allow easy printing of Values from the debugger.
void Value::dump() const { print(errs()); errs() << '\n'; errs().flush(); }
-// Type::dump - allow easy printing of Values from the debugger.
-// Located here because so much of the needed functionality is here.
+// Type::dump - allow easy printing of Types from the debugger.
void Type::dump() const { print(errs()); errs() << '\n'; errs().flush(); }
-// Module::dump() - Allow printing from debugger
+// Module::dump() - Allow printing of Modules from the debugger.
void Module::dump() const { print(errs(), 0); errs().flush(); }