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 | a2620ac1568a788a122ecfd5c03d136e92dd38fe (patch) | |
tree | 895ee544d9cd691e289cc54898265bf736600c8b /llvm/lib/Transforms/Instrumentation | |
parent | 63aeefeafba129ae4cbc3cc3bf007a064b978e06 (diff) | |
download | bcm5719-llvm-a2620ac1568a788a122ecfd5c03d136e92dd38fe.tar.gz bcm5719-llvm-a2620ac1568a788a122ecfd5c03d136e92dd38fe.zip |
Fix warning
llvm-svn: 4649
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* |