Changes to be GCC3.1 friendly

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-07-31 19:32:12 +00:00
parent 1b0a63fa64
commit 7541b89092
3 changed files with 13 additions and 12 deletions

View File

@ -349,9 +349,8 @@ bool DSGraph::isNodeDead(DSNode *N) {
return false;
}
static void
removeIdenticalCalls(std::vector<std::vector<DSNodeHandle> >& Calls,
const string& where) {
static void removeIdenticalCalls(std::vector<std::vector<DSNodeHandle> > &Calls,
const std::string &where) {
// Remove trivially identical function calls
unsigned NumFns = Calls.size();
std::sort(Calls.begin(), Calls.end());
@ -359,8 +358,8 @@ removeIdenticalCalls(std::vector<std::vector<DSNodeHandle> >& Calls,
Calls.end());
DEBUG(if (NumFns != Calls.size())
std::cerr << "Merged " << (NumFns-Calls.size())
<< " call nodes in " << where << "\n";);
std::cerr << "Merged " << (NumFns-Calls.size())
<< " call nodes in " << where << "\n";);
}
// removeTriviallyDeadNodes - After the graph has been constructed, this method
@ -727,7 +726,7 @@ void GlobalDSGraph::cloneCalls(DSGraph& Graph) {
}
// remove trivially identical function calls
removeIdenticalCalls(FunctionCalls, string("Globals Graph"));
removeIdenticalCalls(FunctionCalls, "Globals Graph");
}
@ -759,3 +758,4 @@ bool LocalDataStructures::run(Module &M) {
return false;
}