Skip to content

Commit a5c04ee

Browse files
committed
Fixes to make LLVM compile with vc7.1.
Patch contributed by Paolo Invernizzi! llvm-svn: 16152
1 parent cb46e66 commit a5c04ee

14 files changed

+16
-6
lines changed

llvm/include/llvm/Analysis/IntervalIterator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class IntervalIterator {
177177
E = GT::child_end(Node); I != E; ++I)
178178
ProcessNode(Int, getSourceGraphNode(OrigContainer, *I));
179179

180-
IntStack.push(make_pair(Int, succ_begin(Int)));
180+
IntStack.push(std::make_pair(Int, succ_begin(Int)));
181181
return true;
182182
}
183183

llvm/include/llvm/ExecutionEngine/ExecutionEngine.h

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <vector>
1919
#include <map>
2020
#include <cassert>
21+
#include <string>
2122

2223
namespace llvm {
2324

llvm/lib/Analysis/BasicAliasAnalysis.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "llvm/Pass.h"
2323
#include "llvm/Target/TargetData.h"
2424
#include "llvm/Support/GetElementPtrTypeIterator.h"
25+
#include <algorithm>
2526
using namespace llvm;
2627

2728
// Make sure that anything that uses AliasAnalysis pulls in this file...

llvm/lib/Analysis/IntervalPartition.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "llvm/Analysis/IntervalIterator.h"
1616
#include "llvm/ADT/STLExtras.h"
17+
#include <algorithm>
1718

1819
namespace llvm {
1920

@@ -26,7 +27,7 @@ X("intervals", "Interval Partition Construction", true);
2627

2728
// destroy - Reset state back to before function was analyzed
2829
void IntervalPartition::destroy() {
29-
for_each(Intervals.begin(), Intervals.end(), deleter<Interval>);
30+
std::for_each(Intervals.begin(), Intervals.end(), deleter<Interval>);
3031
IntervalMap.clear();
3132
RootInterval = 0;
3233
}

llvm/lib/Analysis/LoadValueNumbering.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "llvm/Support/CFG.h"
3434
#include "llvm/Target/TargetData.h"
3535
#include <set>
36+
#include <algorithm>
3637
using namespace llvm;
3738

3839
namespace {

llvm/lib/Analysis/LoopInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ X("loops", "Natural Loop Construction", true);
3333
// Loop implementation
3434
//
3535
bool Loop::contains(const BasicBlock *BB) const {
36-
return find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
36+
return std::find(Blocks.begin(), Blocks.end(), BB) != Blocks.end();
3737
}
3838

3939
bool Loop::isLoopExit(const BasicBlock *BB) const {

llvm/lib/Analysis/ScalarEvolution.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
#include "llvm/Support/CommandLine.h"
7676
#include "llvm/ADT/Statistic.h"
7777
#include <cmath>
78+
#include <algorithm>
7879
using namespace llvm;
7980

8081
namespace {

llvm/lib/Bytecode/Reader/Reader.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "llvm/Support/GetElementPtrTypeIterator.h"
2727
#include "llvm/ADT/StringExtras.h"
2828
#include <sstream>
29+
#include <algorithm>
2930
using namespace llvm;
3031

3132
namespace {

llvm/lib/CodeGen/LiveIntervalAnalysis.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "llvm/ADT/STLExtras.h"
3434
#include "VirtRegMap.h"
3535
#include <cmath>
36+
#include <algorithm>
3637

3738
using namespace llvm;
3839

llvm/lib/CodeGen/RegAllocLinearScan.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ void RA::assignRegOrStackSlotAtInterval(LiveInterval* cur)
470470
// is active or inactive to properly update the PhysRegTracker
471471
// and the VirtRegMap
472472
IntervalPtrs::iterator it;
473-
if ((it = find(active_.begin(), active_.end(), i)) != active_.end()) {
473+
if ((it = std::find(active_.begin(), active_.end(), i)) != active_.end()) {
474474
active_.erase(it);
475475
if (MRegisterInfo::isPhysicalRegister(i->reg)) {
476476
prt_->delRegUse(i->reg);
@@ -483,7 +483,7 @@ void RA::assignRegOrStackSlotAtInterval(LiveInterval* cur)
483483
vrm_->clearVirt(i->reg);
484484
}
485485
}
486-
else if ((it = find(inactive_.begin(), inactive_.end(), i)) != inactive_.end()) {
486+
else if ((it = std::find(inactive_.begin(), inactive_.end(), i)) != inactive_.end()) {
487487
inactive_.erase(it);
488488
if (MRegisterInfo::isPhysicalRegister(i->reg))
489489
unhandled_.push(i);

llvm/lib/Transforms/Scalar/LoopUnswitch.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "llvm/Transforms/Utils/Local.h"
3838
#include "llvm/Support/Debug.h"
3939
#include "llvm/ADT/Statistic.h"
40+
#include <algorithm>
4041
using namespace llvm;
4142

4243
namespace {

llvm/lib/Transforms/Scalar/LowerSwitch.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "llvm/Pass.h"
2121
#include "llvm/Support/Debug.h"
2222
#include "llvm/ADT/Statistic.h"
23+
#include <algorithm>
2324
using namespace llvm;
2425

2526
namespace {

llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "llvm/Support/CFG.h"
2525
#include "llvm/Support/StableBasicBlockNumbering.h"
2626
#include "llvm/ADT/StringExtras.h"
27+
#include <algorithm>
2728
using namespace llvm;
2829

2930
/// isAllocaPromotable - Return true if this alloca is legal for promotion.

llvm/lib/Transforms/Utils/SimplifyCFG.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ static bool PropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
4949
// with incompatible values coming in from the two edges!
5050
//
5151
for (pred_iterator PI = pred_begin(Succ), PE = pred_end(Succ); PI != PE; ++PI)
52-
if (find(BBPreds.begin(), BBPreds.end(), *PI) != BBPreds.end()) {
52+
if (std::find(BBPreds.begin(), BBPreds.end(), *PI) != BBPreds.end()) {
5353
// Loop over all of the PHI nodes checking to see if there are
5454
// incompatible values coming in.
5555
for (BasicBlock::iterator I = Succ->begin();

0 commit comments

Comments
 (0)