[llvm-commits] [llvm] r107795 - /llvm/trunk/lib/CodeGen/MachineFunction.cpp
Dan Gohman
gohman at apple.com
Wed Jul 7 10:28:45 PDT 2010
Author: djg
Date: Wed Jul 7 12:28:45 2010
New Revision: 107795
URL: http://llvm.org/viewvc/llvm-project?rev=107795&view=rev
Log:
Fix debugging strings.
Modified:
llvm/trunk/lib/CodeGen/MachineFunction.cpp
Modified: llvm/trunk/lib/CodeGen/MachineFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineFunction.cpp?rev=107795&r1=107794&r2=107795&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineFunction.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineFunction.cpp Wed Jul 7 12:28:45 2010
@@ -378,7 +378,7 @@
#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 @@
#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
}
More information about the llvm-commits
mailing list