1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[Orc][examples] Actually return MainResult from main

This commit is contained in:
Lang Hames 2020-03-14 15:10:59 -07:00
parent 7e25c8f52a
commit 601e0cfef0

View File

@ -138,5 +138,6 @@ jit_cleanup:
llvm_shutdown:
// Shut down LLVM.
LLVMShutdown();
return 0;
return MainResult;
}