1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 1585c44a59
commit cd6523c879

View File

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