summaryrefslogtreecommitdiffstats
path: root/contrib/llvm/tools/opt/PrintSCC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/tools/opt/PrintSCC.cpp')
-rw-r--r--contrib/llvm/tools/opt/PrintSCC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/tools/opt/PrintSCC.cpp b/contrib/llvm/tools/opt/PrintSCC.cpp
index 66709ff..ea486ca 100644
--- a/contrib/llvm/tools/opt/PrintSCC.cpp
+++ b/contrib/llvm/tools/opt/PrintSCC.cpp
@@ -102,7 +102,7 @@ bool CallGraphSCC::runOnModule(Module &M) {
for (std::vector<CallGraphNode*>::const_iterator I = nextSCC.begin(),
E = nextSCC.end(); I != E; ++I)
outs() << ((*I)->getFunction() ? (*I)->getFunction()->getNameStr()
- : std::string("Indirect CallGraph node")) << ", ";
+ : std::string("external node")) << ", ";
if (nextSCC.size() == 1 && SCCI.hasLoop())
outs() << " (Has self-loop).";
}
OpenPOWER on IntegriCloud