Skip to content

Commit 8868d3f

Browse files
authored
Add aliasscope expr to interpreter (#40275)
1 parent a52b43d commit 8868d3f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/interpreter.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,8 @@ static jl_value_t *eval_value(jl_value_t *e, interpreter_state *s)
302302
else if (head == boundscheck_sym) {
303303
return jl_true;
304304
}
305-
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym) {
305+
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym ||
306+
head == aliasscope_sym || head == popaliasscope_sym) {
306307
return jl_nothing;
307308
}
308309
else if (head == gc_preserve_begin_sym || head == gc_preserve_end_sym) {

0 commit comments

Comments
 (0)