1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[Kaleidoscope][BuildingAJIT] Add a missing std::move.

This should fix the build failure described in
https://github.com/llvm/llvm-project/issues/63.
This commit is contained in:
Lang Hames 2019-12-15 15:35:49 -08:00
parent ea01108420
commit 25046f85e4

View File

@ -105,7 +105,7 @@ private:
FPM->run(F);
});
return TSM;
return std::move(TSM);
}
};