mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-24 13:18:17 +00:00
Update SetVector to rely on the underlying set's insert to return a pair<iterator, bool>
This is to be consistent with StringSet and ultimately with the standard library's associative container insert function. This lead to updating SmallSet::insert to return pair<iterator, bool>, and then to update SmallPtrSet::insert to return pair<iterator, bool>, and then to update all the existing users of those functions... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222334 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -623,7 +623,7 @@ static bool LinearizeExprTree(BinaryOperator *I,
|
||||
// If this is a binary operation of the right kind with only one use then
|
||||
// add its operands to the expression.
|
||||
if (BinaryOperator *BO = isReassociableOp(Op, Opcode)) {
|
||||
assert(Visited.insert(Op) && "Not first visit!");
|
||||
assert(Visited.insert(Op).second && "Not first visit!");
|
||||
DEBUG(dbgs() << "DIRECT ADD: " << *Op << " (" << Weight << ")\n");
|
||||
Worklist.push_back(std::make_pair(BO, Weight));
|
||||
continue;
|
||||
@@ -633,7 +633,7 @@ static bool LinearizeExprTree(BinaryOperator *I,
|
||||
LeafMap::iterator It = Leaves.find(Op);
|
||||
if (It == Leaves.end()) {
|
||||
// Not in the leaf map. Must be the first time we saw this operand.
|
||||
assert(Visited.insert(Op) && "Not first visit!");
|
||||
assert(Visited.insert(Op).second && "Not first visit!");
|
||||
if (!Op->hasOneUse()) {
|
||||
// This value has uses not accounted for by the expression, so it is
|
||||
// not safe to modify. Mark it as being a leaf.
|
||||
@@ -1609,7 +1609,7 @@ Value *Reassociate::OptimizeAdd(Instruction *I,
|
||||
SmallPtrSet<Value*, 8> Duplicates;
|
||||
for (unsigned i = 0, e = Factors.size(); i != e; ++i) {
|
||||
Value *Factor = Factors[i];
|
||||
if (!Duplicates.insert(Factor))
|
||||
if (!Duplicates.insert(Factor).second)
|
||||
continue;
|
||||
|
||||
unsigned Occ = ++FactorOccurrences[Factor];
|
||||
@@ -1960,7 +1960,7 @@ void Reassociate::EraseInst(Instruction *I) {
|
||||
// and add that since that's where optimization actually happens.
|
||||
unsigned Opcode = Op->getOpcode();
|
||||
while (Op->hasOneUse() && Op->user_back()->getOpcode() == Opcode &&
|
||||
Visited.insert(Op))
|
||||
Visited.insert(Op).second)
|
||||
Op = Op->user_back();
|
||||
RedoInsts.insert(Op);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user