1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[Orc] Fix missing return.

llvm-svn: 257373
This commit is contained in:
Lang Hames 2016-01-11 19:40:25 +00:00
parent 9f11bb5b33
commit 789b9a4918

View File

@ -106,6 +106,7 @@ private:
SourceModule = std::move(Other.SourceModule);
StubsToClone = std::move(Other.StubsToClone);
StubsMgr = std::move(Other.StubsMgr);
return *this;
}
JITSymbol findSymbol(StringRef Name, bool ExportedSymbolsOnly) {