Change another reference to the "indirect callgraph node" to
authorDuncan Sands <baldrick@free.fr>
Wed, 9 Jun 2010 17:39:05 +0000 (17:39 +0000)
committerDuncan Sands <baldrick@free.fr>
Wed, 9 Jun 2010 17:39:05 +0000 (17:39 +0000)
refer to the "external node" instead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105731 91177308-0d34-0410-b5e6-96231b3b80d8

tools/opt/GraphPrinters.cpp

index 86f99324b953a15c8687ca6388b021ba37cd687a..e7c6d1e6af8579fadf56656d1a860ccddd838d16 100644 (file)
@@ -56,7 +56,7 @@ namespace llvm {
       if (Node->getFunction())
         return ((Value*)Node->getFunction())->getName();
       else
-        return "Indirect call node";
+        return "external node";
     }
   };
 }