Skip to content

Commit

Permalink
Make analyzer happier
Browse files Browse the repository at this point in the history
  • Loading branch information
gbaraldi committed Mar 4, 2024
1 parent 0903278 commit f02c726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jltypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ static jl_value_t *normalize_unionalls(jl_value_t *t)
else if (jl_is_unionall(t)) {
jl_unionall_t *u = (jl_unionall_t*)t;
jl_value_t *body = normalize_unionalls(u->body);
JL_GC_PUSH1(&body);
JL_GC_PUSH2(&body, &t);
if (body != u->body) {
t = jl_new_struct(jl_unionall_type, u->var, body);
u = (jl_unionall_t*)t;
Expand Down

0 comments on commit f02c726

Please sign in to comment.