Skip to content

Commit f02c726

Browse files
committed
Make analyzer happier
1 parent 0903278 commit f02c726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jltypes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1846,7 +1846,7 @@ static jl_value_t *normalize_unionalls(jl_value_t *t)
18461846
else if (jl_is_unionall(t)) {
18471847
jl_unionall_t *u = (jl_unionall_t*)t;
18481848
jl_value_t *body = normalize_unionalls(u->body);
1849-
JL_GC_PUSH1(&body);
1849+
JL_GC_PUSH2(&body, &t);
18501850
if (body != u->body) {
18511851
t = jl_new_struct(jl_unionall_type, u->var, body);
18521852
u = (jl_unionall_t*)t;

0 commit comments

Comments
 (0)