mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Try to fix MSVC build after r79846.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79850 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e317bcc74c
commit
5b9e7ef627
@ -1331,7 +1331,7 @@ CodeGenDAGPatterns::CodeGenDAGPatterns(RecordKeeper &R) : Records(R) {
|
||||
}
|
||||
|
||||
CodeGenDAGPatterns::~CodeGenDAGPatterns() {
|
||||
for (std::map<Record*, TreePattern*>::iterator I = PatternFragments.begin(),
|
||||
for (pf_iterator I = PatternFragments.begin(),
|
||||
E = PatternFragments.end(); I != E; ++I)
|
||||
delete I->second;
|
||||
}
|
||||
@ -1983,7 +1983,8 @@ void CodeGenDAGPatterns::ParseInstructions() {
|
||||
}
|
||||
|
||||
// If we can, convert the instructions to be patterns that are matched!
|
||||
for (std::map<Record*, DAGInstruction>::iterator II = Instructions.begin(),
|
||||
for (std::map<Record*, DAGInstruction, RecordPtrCmp>::iterator II =
|
||||
Instructions.begin(),
|
||||
E = Instructions.end(); II != E; ++II) {
|
||||
DAGInstruction &TheInst = II->second;
|
||||
const TreePattern *I = TheInst.getPattern();
|
||||
|
@ -509,7 +509,8 @@ public:
|
||||
return SDNodeXForms.find(R)->second;
|
||||
}
|
||||
|
||||
typedef std::map<Record*, NodeXForm>::const_iterator nx_iterator;
|
||||
typedef std::map<Record*, NodeXForm, RecordPtrCmp>::const_iterator
|
||||
nx_iterator;
|
||||
nx_iterator nx_begin() const { return SDNodeXForms.begin(); }
|
||||
nx_iterator nx_end() const { return SDNodeXForms.end(); }
|
||||
|
||||
@ -556,7 +557,8 @@ public:
|
||||
assert(PatternFragments.count(R) && "Invalid pattern fragment request!");
|
||||
return PatternFragments.find(R)->second;
|
||||
}
|
||||
typedef std::map<Record*, TreePattern*>::const_iterator pf_iterator;
|
||||
typedef std::map<Record*, TreePattern*, RecordPtrCmp>::const_iterator
|
||||
pf_iterator;
|
||||
pf_iterator pf_begin() const { return PatternFragments.begin(); }
|
||||
pf_iterator pf_end() const { return PatternFragments.end(); }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user