initialize ast_expression_common.outl/outr

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-08-13 19:40:06 +02:00
parent 406a32bea6
commit 862b506dcd

2
ast.c
View file

@ -58,6 +58,8 @@ static void ast_expression_init(ast_expression *self,
self->expression.codegen = codegen;
self->expression.vtype = TYPE_VOID;
self->expression.next = NULL;
self->expression.outl = NULL;
self->expression.outr = NULL;
MEM_VECTOR_INIT(&self->expression, params);
}