Skip to content

Commit

Permalink
Add aliasscope expr to interpreter (#40275)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8868d3f)
  • Loading branch information
vchuravy authored and KristofferC committed Apr 4, 2021
1 parent 6248d03 commit a595d69
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,8 @@ static jl_value_t *eval_value(jl_value_t *e, interpreter_state *s)
else if (head == boundscheck_sym) {
return jl_true;
}
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym) {
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym ||
head == aliasscope_sym || head == popaliasscope_sym) {
return jl_nothing;
}
else if (head == gc_preserve_begin_sym || head == gc_preserve_end_sym) {
Expand Down

0 comments on commit a595d69

Please sign in to comment.