diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-05 04:46:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-05 04:46:22 +0000 |
commit | 3c670cb65a8a64c16fae25f22449d6a66ac80a04 (patch) | |
tree | 0a3929196d5b1f87260fda0080581a4ed2b17606 /llvm/lib | |
parent | 33eb90993916e47bbdfe7e6c4c4299c5a8f2059f (diff) | |
download | bcm5719-llvm-3c670cb65a8a64c16fae25f22449d6a66ac80a04.tar.gz bcm5719-llvm-3c670cb65a8a64c16fae25f22449d6a66ac80a04.zip |
Remove dead vars
llvm-svn: 17482
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 1 | ||||
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index ef7b9b38186..bb7c5a6e829 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp @@ -85,7 +85,6 @@ bool ProfilePaths::runOnFunction(Function &F){ std::vector<Node *> nodes; std::vector<Edge> edges; - Node *tmp; Node *exitNode = 0, *startNode = 0; // The nodes must be uniquely identified: diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp index fd0844e14b9..4954723685f 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/RetracePath.cpp @@ -134,7 +134,6 @@ void getBBtrace(vector<BasicBlock *> &vBB, int pathNo, Function *M){//, std::vector<Node *> nodes; std::vector<Edge> edges; - Node *tmp; Node *exitNode=0, *startNode=0; //Creat cfg just once for each function! |