[llvm] aab07d8 - fixed #95641 pointless string copy (#127325)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 08:42:12 PST 2025
Author: sommersun
Date: 2025-02-24T16:42:09Z
New Revision: aab07d8ca64495600ce9e7fe4825ca7ff9057c28
URL: https://github.com/llvm/llvm-project/commit/aab07d8ca64495600ce9e7fe4825ca7ff9057c28
DIFF: https://github.com/llvm/llvm-project/commit/aab07d8ca64495600ce9e7fe4825ca7ff9057c28.diff
LOG: fixed #95641 pointless string copy (#127325)
fixed #95641 by using std::move for T&&.
Added:
Modified:
llvm/include/llvm/TableGen/Record.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/TableGen/Record.h b/llvm/include/llvm/TableGen/Record.h
index e04ed34823148..334007524c954 100644
--- a/llvm/include/llvm/TableGen/Record.h
+++ b/llvm/include/llvm/TableGen/Record.h
@@ -1967,7 +1967,7 @@ class RecordKeeper {
}
void saveInputFilename(std::string Filename) {
- InputFilename = Filename;
+ InputFilename = std::move(Filename);
}
void addClass(std::unique_ptr<Record> R) {
More information about the llvm-commits
mailing list