forked from OSchip/llvm-project
Apply clang-tidy fixes for modernize-use-emplace in SCFTransformOps.cpp (NFC)
This commit is contained in:
parent
d95140a5a9
commit
cd417c6a46
|
@ -176,7 +176,7 @@ loopScheduling(scf::ForOp forOp,
|
|||
for (const auto &it : wrappedSchedule) {
|
||||
for (Operation *op : it.second) {
|
||||
unsigned cycle = opCycles[op];
|
||||
schedule.push_back(std::make_pair(op, cycle / iterationInterval));
|
||||
schedule.emplace_back(op, cycle / iterationInterval);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue