Skip to content

Commit 14e454b

Browse files
authored
Ignore :aliasscope and :popaliasscope (#581)
Fixes #574
1 parent 3ab2674 commit 14e454b

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
@@ -401,7 +401,8 @@ function eval_rhs(@nospecialize(recurse), frame, node::Expr)
401401
elseif head === :boundscheck
402402
return true
403403
elseif head === :meta || head === :inbounds || head === :loopinfo ||
404-
head === :gc_preserve_begin || head === :gc_preserve_end
404+
head === :gc_preserve_begin || head === :gc_preserve_end ||
405+
head === :aliasscope || head === :popaliasscope
405406
return nothing
406407
elseif head === :method && length(node.args) == 1
407408
return evaluate_methoddef(frame, node)

0 commit comments

Comments
 (0)