[llvm-commits] [llvm] r105731 - /llvm/trunk/tools/opt/GraphPrinters.cpp
Duncan Sands
baldrick at free.fr
Wed Jun 9 10:39:05 PDT 2010
Author: baldrick
Date: Wed Jun 9 12:39:05 2010
New Revision: 105731
URL: http://llvm.org/viewvc/llvm-project?rev=105731&view=rev
Log:
Change another reference to the "indirect callgraph node" to
refer to the "external node" instead.
Modified:
llvm/trunk/tools/opt/GraphPrinters.cpp
Modified: llvm/trunk/tools/opt/GraphPrinters.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/opt/GraphPrinters.cpp?rev=105731&r1=105730&r2=105731&view=diff
==============================================================================
--- llvm/trunk/tools/opt/GraphPrinters.cpp (original)
+++ llvm/trunk/tools/opt/GraphPrinters.cpp Wed Jun 9 12:39:05 2010
@@ -56,7 +56,7 @@
if (Node->getFunction())
return ((Value*)Node->getFunction())->getName();
else
- return "Indirect call node";
+ return "external node";
}
};
}
More information about the llvm-commits
mailing list