Skip to content

Commit

Permalink
inlining: follow up #43479, bail out from MethodResultPure assemble…
Browse files Browse the repository at this point in the history
… earlier
  • Loading branch information
aviatesk committed Jan 5, 2022
1 parent a9b685d commit a79e40d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/compiler/ssair/inlining.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,8 @@ function assemble_inline_todo!(ir::IRCode, state::InliningState)
end
ir.stmts[idx][:flag] |= IR_FLAG_EFFECT_FREE
info = info.info
elseif info === false
end
if info === false
# Inference determined this couldn't be analyzed. Don't question it.
continue
end
Expand Down

0 comments on commit a79e40d

Please sign in to comment.