We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0903278 commit f02c726Copy full SHA for f02c726
src/jltypes.c
@@ -1846,7 +1846,7 @@ static jl_value_t *normalize_unionalls(jl_value_t *t)
1846
else if (jl_is_unionall(t)) {
1847
jl_unionall_t *u = (jl_unionall_t*)t;
1848
jl_value_t *body = normalize_unionalls(u->body);
1849
- JL_GC_PUSH1(&body);
+ JL_GC_PUSH2(&body, &t);
1850
if (body != u->body) {
1851
t = jl_new_struct(jl_unionall_type, u->var, body);
1852
u = (jl_unionall_t*)t;
0 commit comments