diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-09 00:49:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-09 00:49:43 +0000 |
commit | 0006bd75201f340b95c1dbf71e50dc5de5ed9425 (patch) | |
tree | b92a619dde2fc0aec7a6209ea840eeaa50a525d4 /lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | |
parent | bf10f05bf731b00979bb38f9c0c3d7a1145d8859 (diff) |
Fix warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index b0c15f7bf6..bc815c6e23 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp @@ -87,7 +87,7 @@ bool ProfilePaths::runOnFunction(Function &F){ std::vector<Edge> edges; Node *tmp; - Node *exitNode, *startNode; + Node *exitNode = 0, *startNode = 0; // The nodes must be uniquesly identified: // That is, no two nodes must hav same BB* |