File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/include/llvm/Transforms/Instrumentation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -280,13 +280,13 @@ template <class Edge, class BBInfo> class CFGMST {
280
280
std::tie (Iter, Inserted) = BBInfos.insert (std::make_pair (Src, nullptr ));
281
281
if (Inserted) {
282
282
// Newly inserted, update the real info.
283
- Iter->second = std::move (std:: make_unique<BBInfo>(Index) );
283
+ Iter->second = std::make_unique<BBInfo>(Index);
284
284
Index++;
285
285
}
286
286
std::tie (Iter, Inserted) = BBInfos.insert (std::make_pair (Dest, nullptr ));
287
287
if (Inserted)
288
288
// Newly inserted, update the real info.
289
- Iter->second = std::move (std:: make_unique<BBInfo>(Index) );
289
+ Iter->second = std::make_unique<BBInfo>(Index);
290
290
AllEdges.emplace_back (new Edge (Src, Dest, W));
291
291
return *AllEdges.back ();
292
292
}
You can’t perform that action at this time.
0 commit comments