Change another reference to the "indirect callgraph node" to

refer to the "external node" instead.

llvm-svn: 105731
This commit is contained in:
Duncan Sands 2010-06-09 17:39:05 +00:00
parent 516473902b
commit 9f403695e1
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace llvm {
if (Node->getFunction())
return ((Value*)Node->getFunction())->getName();
else
return "Indirect call node";
return "external node";
}
};
}