Skip to content

Commit b96c37e

Browse files
authored
fix on julia master (#134)
1 parent 9191196 commit b96c37e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interpret.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,8 @@ function eval_rhs(@nospecialize(recurse), frame, node::Expr)
353353
return length(frame.framedata.exception_frames)
354354
elseif head == :boundscheck
355355
return true
356-
elseif head == :meta || head == :inbounds || head == :simdloop || head == :gc_preserve_begin || head == :gc_preserve_end
356+
elseif head == :meta || head == :inbounds || head == (@static VERSION >= v"1.2.0-DEV.462" ? :loopinfo : :simdloop) ||
357+
head == :gc_preserve_begin || head == :gc_preserve_end
357358
return nothing
358359
elseif head == :method && length(node.args) == 1
359360
return evaluate_methoddef(frame, node)

0 commit comments

Comments
 (0)