Apply clang-tidy fixes for modernize-use-emplace in SCFTransformOps.cpp (NFC)

This commit is contained in:
Mehdi Amini 2022-06-12 17:46:52 +00:00
parent d95140a5a9
commit cd417c6a46
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}
}