Fixed broken stack consistency; fix #4135

parent e5f160dc
......@@ -1795,8 +1795,8 @@ codegen(codegen_scope *s, node *tree, int val)
len = 0;
}
else {
codegen(s, tree->car->car, VAL);
codegen(s, tree->car->cdr, VAL);
codegen(s, tree->car->car, val);
codegen(s, tree->car->cdr, val);
len++;
}
tree = tree->cdr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment