Skip to content

Commit a79e40d

Browse files
committed
inlining: follow up #43479, bail out from MethodResultPure assemble earlier
1 parent a9b685d commit a79e40d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

base/compiler/ssair/inlining.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,8 @@ function assemble_inline_todo!(ir::IRCode, state::InliningState)
13101310
end
13111311
ir.stmts[idx][:flag] |= IR_FLAG_EFFECT_FREE
13121312
info = info.info
1313-
elseif info === false
1313+
end
1314+
if info === false
13141315
# Inference determined this couldn't be analyzed. Don't question it.
13151316
continue
13161317
end

0 commit comments

Comments
 (0)