From: Duncan Sands Date: Wed, 9 Jun 2010 17:39:05 +0000 (+0000) Subject: Change another reference to the "indirect callgraph node" to X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3982c2c8bc506fd0fd8a03e6f1739f49fb029e92;p=oota-llvm.git Change another reference to the "indirect callgraph node" to refer to the "external node" instead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105731 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/opt/GraphPrinters.cpp b/tools/opt/GraphPrinters.cpp index 86f99324b95..e7c6d1e6af8 100644 --- a/tools/opt/GraphPrinters.cpp +++ b/tools/opt/GraphPrinters.cpp @@ -56,7 +56,7 @@ namespace llvm { if (Node->getFunction()) return ((Value*)Node->getFunction())->getName(); else - return "Indirect call node"; + return "external node"; } }; }