Skip to content

Commit 0a77879

Browse files
committed
remove unneeded std::move
1 parent 9863f75 commit 0a77879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm_util/llvm2alive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1659,7 +1659,7 @@ class llvm2alive_ : public llvm::InstVisitor<llvm2alive_, unique_ptr<Instr>> {
16591659
else
16601660
BB->addInstr(make_unique<Branch>(Fn.getBB(entry_name)));
16611661

1662-
return std::move(Fn);
1662+
return Fn;
16631663
}
16641664
};
16651665
}

0 commit comments

Comments
 (0)