[llvm-commits] [llvm] r55315 - /llvm/trunk/lib/VMCore/AsmWriter.cpp

Chris Lattner sabre at nondot.org
Mon Aug 25 10:03:16 PDT 2008


Author: lattner
Date: Mon Aug 25 12:03:15 2008
New Revision: 55315

URL: http://llvm.org/viewvc/llvm-project?rev=55315&view=rev
Log:
Fix pasto (values -> types) noticed by Josh Conner

Modified:
    llvm/trunk/lib/VMCore/AsmWriter.cpp

Modified: llvm/trunk/lib/VMCore/AsmWriter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/AsmWriter.cpp?rev=55315&r1=55314&r2=55315&view=diff

==============================================================================
--- llvm/trunk/lib/VMCore/AsmWriter.cpp (original)
+++ llvm/trunk/lib/VMCore/AsmWriter.cpp Mon Aug 25 12:03:15 2008
@@ -1788,15 +1788,13 @@
   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(); }
 
 





More information about the llvm-commits mailing list