diff options
author | Chris Lattner <sabre@nondot.org> | 2008-08-25 17:03:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-08-25 17:03:15 +0000 |
commit | dab94255474cc49516d4afba7cfa0b9815398c7b (patch) | |
tree | c6cbbc1055d2c085c0651725b84847a60c8e4105 | |
parent | ef957f34890ad150b986b260c13c4fa4b40095de (diff) | |
download | bcm5719-llvm-dab94255474cc49516d4afba7cfa0b9815398c7b.tar.gz bcm5719-llvm-dab94255474cc49516d4afba7cfa0b9815398c7b.zip |
Fix pasto (values -> types) noticed by Josh Conner
llvm-svn: 55315
-rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 56653e8fdb3..21fb9257826 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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(); } |