diff options
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index b0c15f7bf6b..bc815c6e23f 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/llvm/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* |