Skip to content

Commit

Permalink
fix on julia master (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored Mar 13, 2019
1 parent 9191196 commit b96c37e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interpret.jl
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,8 @@ function eval_rhs(@nospecialize(recurse), frame, node::Expr)
return length(frame.framedata.exception_frames)
elseif head == :boundscheck
return true
elseif head == :meta || head == :inbounds || head == :simdloop || head == :gc_preserve_begin || head == :gc_preserve_end
elseif head == :meta || head == :inbounds || head == (@static VERSION >= v"1.2.0-DEV.462" ? :loopinfo : :simdloop) ||
head == :gc_preserve_begin || head == :gc_preserve_end
return nothing
elseif head == :method && length(node.args) == 1
return evaluate_methoddef(frame, node)
Expand Down

0 comments on commit b96c37e

Please sign in to comment.