1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

[ORC] Fix a missing return value.

llvm-svn: 335677
This commit is contained in:
Lang Hames 2018-06-26 22:30:42 +00:00
parent 2e643205bc
commit db185d0f92

View File

@ -175,6 +175,8 @@ Error CtorDtorRunner2::run() {
return CtorDtorMap.takeError();
CtorDtorsByPriority.clear();
return Error::success();
}
void LocalCXXRuntimeOverridesBase::runDestructors() {