aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/NodeImpl.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-17 03:42:51 +0000
committerChris Lattner <sabre@nondot.org>2002-04-17 03:42:51 +0000
commitef35ff066c8c301acd10db3daa263e119528b260 (patch)
treed0c60fe3bf00738d2966e272c88da94a40c0b60f /lib/Analysis/DataStructure/NodeImpl.cpp
parentfe14568a8122b7c9b832795594b7bae11b2b6cc4 (diff)
Inline indirect function calls that are only capable of calling one function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/NodeImpl.cpp')
-rw-r--r--lib/Analysis/DataStructure/NodeImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DataStructure/NodeImpl.cpp b/lib/Analysis/DataStructure/NodeImpl.cpp
index 4451f6e59b..66bd8898b1 100644
--- a/lib/Analysis/DataStructure/NodeImpl.cpp
+++ b/lib/Analysis/DataStructure/NodeImpl.cpp
@@ -285,7 +285,7 @@ string CallDSNode::getCaption() const {
OS << "call " << CM->getName();
else
OS << "call <indirect>";
- OS << "|Ret: ";
+ OS << ": ";
WriteTypeSymbolic(OS, getType(),
CI->getParent()->getParent()->getParent());
return OS.str();