forked from OSchip/llvm-project
[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:
parent
8280896bd1
commit
064e7d1df1
|
@ -105,7 +105,7 @@ private:
|
|||
FPM->run(F);
|
||||
});
|
||||
|
||||
return TSM;
|
||||
return std::move(TSM);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue