Skip to content

Commit 28a9847

Browse files
vchuravyKristofferC
authored andcommitted
Add aliasscope expr to interpreter (#40275)
(cherry picked from commit 8868d3f)
1 parent 872ed33 commit 28a9847

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
@@ -289,7 +289,8 @@ static jl_value_t *eval_value(jl_value_t *e, interpreter_state *s)
289289
else if (head == boundscheck_sym) {
290290
return jl_true;
291291
}
292-
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym) {
292+
else if (head == meta_sym || head == coverageeffect_sym || head == inbounds_sym || head == loopinfo_sym ||
293+
head == aliasscope_sym || head == popaliasscope_sym) {
293294
return jl_nothing;
294295
}
295296
else if (head == gc_preserve_begin_sym || head == gc_preserve_end_sym) {

0 commit comments

Comments
 (0)