[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 8280896bd1
commit 064e7d1df1
1 changed files with 1 additions and 1 deletions

View File

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