File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ ArrayRef<ReductionNode *> ReductionNode::generateNewVariants() {
63
63
for (const Range &range : getRanges ()) {
64
64
std::vector<Range> subRanges = getRanges ();
65
65
llvm::erase_value (subRanges, range);
66
- variants.push_back (createNewNode (std::move ( subRanges) ));
66
+ variants.push_back (createNewNode (subRanges));
67
67
}
68
68
69
69
return getVariants ().drop_front (oldNumVariant);
@@ -91,7 +91,7 @@ ArrayRef<ReductionNode *> ReductionNode::generateNewVariants() {
91
91
*subRangesIter = std::make_pair (maxRange.first , half);
92
92
variants.push_back (createNewNode (subRanges));
93
93
*subRangesIter = std::make_pair (half, maxRange.second );
94
- variants.push_back (createNewNode (std::move ( subRanges) ));
94
+ variants.push_back (createNewNode (subRanges));
95
95
96
96
auto it = ranges.insert (maxElement, std::make_pair (half, maxRange.second ));
97
97
it = ranges.insert (it, std::make_pair (maxRange.first , half));
You can’t perform that action at this time.
0 commit comments