diff options
author | Dan Gohman <gohman@apple.com> | 2010-07-07 17:28:45 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-07-07 17:28:45 +0000 |
commit | 769201448d5fa19173df09c9c8508176b79498f4 (patch) | |
tree | 73eb173ce4469fdc4997d61c1d3cf333ae025036 /llvm/lib/CodeGen/MachineFunction.cpp | |
parent | 69b518f6ef738e6f19c00d6e3383c75615ba224e (diff) | |
download | bcm5719-llvm-769201448d5fa19173df09c9c8508176b79498f4.tar.gz bcm5719-llvm-769201448d5fa19173df09c9c8508176b79498f4.zip |
Fix debugging strings.
llvm-svn: 107795
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 31c3d0f01d4..666120f032c 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -378,7 +378,7 @@ void MachineFunction::viewCFG() const #ifndef NDEBUG ViewGraph(this, "mf" + getFunction()->getNameStr()); #else - errs() << "SelectionDAG::viewGraph is only available in debug builds on " + errs() << "MachineFunction::viewCFG is only available in debug builds on " << "systems with Graphviz or gv!\n"; #endif // NDEBUG } @@ -388,7 +388,7 @@ void MachineFunction::viewCFGOnly() const #ifndef NDEBUG ViewGraph(this, "mf" + getFunction()->getNameStr(), true); #else - errs() << "SelectionDAG::viewGraph is only available in debug builds on " + errs() << "MachineFunction::viewCFGOnly is only available in debug builds on " << "systems with Graphviz or gv!\n"; #endif // NDEBUG } |