[llvm] fixed #95641 pointless string copy (PR #127325)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 04:20:20 PST 2025
================
@@ -1966,9 +1966,7 @@ class RecordKeeper {
return It == ExtraGlobals.end() ? nullptr : It->second;
}
- void saveInputFilename(std::string Filename) {
- InputFilename = Filename;
- }
+ void saveInputFilename(std::string &&Filename) { InputFilename = Filename; }
----------------
RKSimon wrote:
Why not this instead?
```
void saveInputFilename(std::string Filename) { InputFilename = std::move(Filename); }
```
https://github.com/llvm/llvm-project/pull/127325
More information about the llvm-commits
mailing list