1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[ORC] Remove some unreachable code.

Fixes http://llvm.org/PR41662.

llvm-svn: 361199
This commit is contained in:
Lang Hames 2019-05-20 21:30:33 +00:00
parent bee2b0c829
commit 0ef481142c

View File

@ -139,13 +139,10 @@ Error CtorDtorRunner::run() {
CtorDtor();
}
}
CtorDtorsByPriority.clear();
return Error::success();
} else
return CtorDtorMap.takeError();
CtorDtorsByPriority.clear();
return Error::success();
}
void LocalCXXRuntimeOverridesBase::runDestructors() {