mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-22 10:16:43 +00:00
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
This commit is contained in:
parent
3518175d42
commit
7059e530ed
@ -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(); }
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user