commit | 889f620841146d6f9f935f2271e80a7dddc15e25 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Apr 23 16:37:45 2003 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Apr 23 16:37:45 2003 +0000 |
tree | eb3b923511a1c4be6f4936462a30321f6984c395 | |
parent | 6ee2cf5d89f1695e229926ecee821e1a22759617 [diff] [blame] |
Remove unnecesary &*'s llvm-svn: 5872
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index 57b17a5..79b94e8 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
@@ -87,7 +87,7 @@ nodes.push_back(nd); if(&*BB == ExitNode) exitNode=nd; - if(&*BB==F.begin()) + if(BB==F.begin()) startNode=nd; }