mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 02:24:22 +00:00
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:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user