[llvm] fixed #95641 pointless string copy (PR #127325)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 22:29:09 PST 2025
================
@@ -113,7 +113,7 @@ int llvm::TableGenMain(const char *argv0,
return reportError(argv0, "Could not open input file '" + InputFilename +
"': " + EC.message() + "\n");
- Records.saveInputFilename(InputFilename);
+ Records.saveInputFilename(std::move(InputFilename));
----------------
sommersun wrote:
ok, I understand. Thanks.
https://github.com/llvm/llvm-project/pull/127325
More information about the llvm-commits
mailing list