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 | 6684555138d8b15c3d52a6fd42263c211f05e47f (patch) | |
tree | 6d48c99d30e9e7f1a37c396a5768e239725cdc8f | |
parent | 7bcb858c11bb5b44c8992b37af5eb900c603b3cc (diff) | |
download | external_llvm-6684555138d8b15c3d52a6fd42263c211f05e47f.zip external_llvm-6684555138d8b15c3d52a6fd42263c211f05e47f.tar.gz external_llvm-6684555138d8b15c3d52a6fd42263c211f05e47f.tar.bz2 |
Fix pasto (values -> types) noticed by Josh Conner
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55315 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 56653e8..21fb925 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(); } |