projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
194ca80
)
Add support for compilers without argument dependent name lookup, contributed
author
Chris Lattner
<sabre@nondot.org>
Wed, 8 Dec 2004 16:12:20 +0000
(16:12 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 8 Dec 2004 16:12:20 +0000
(16:12 +0000)
by Bjørn Wennberg
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18627
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
b/lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
index 28830afba82547d2b7076b05d5a25d2d302d9aba..21a6e93e0440fa152ffa71803f38880dea30f074 100644
(file)
--- a/
lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
+++ b/
lib/Transforms/Instrumentation/ProfilePaths/Graph.cpp
@@
-383,7
+383,7
@@
Graph* Graph::getMaxSpanningTree(){
//keep pulling out vertex of min wt from vt
while(!vt.empty()){
- Node *u=*(min_element(vt.begin(), vt.end(), compare_nodes()));
+ Node *u=*(
std::
min_element(vt.begin(), vt.end(), compare_nodes()));
DEBUG(std::cerr<<"popped wt"<<(u)->getWeight()<<"\n";
printNode(u));