Skip to content

Commit

Permalink
Merge pull request #21913 from JuliaLang/aa/llvm-eh-handler
Browse files Browse the repository at this point in the history
Add a missing return in doInitialization
  • Loading branch information
yuyichao authored May 16, 2017
2 parents ecf10a2 + ec5b4f3 commit ab82ca4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/llvm-lower-handlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ bool LowerExcHandlers::doInitialization(Module &M) {
setjmp_func = M.getFunction(jl_setjmp_name);
lifetime_start = Intrinsic::getDeclaration(&M, Intrinsic::lifetime_start);
lifetime_end = Intrinsic::getDeclaration(&M, Intrinsic::lifetime_end);
return true;
}

bool LowerExcHandlers::runOnFunction(Function &F) {
Expand Down

0 comments on commit ab82ca4

Please sign in to comment.