mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-23 11:11:22 +00:00
initialize some values
This commit is contained in:
parent
07d5686a47
commit
55915b5217
1 changed files with 3 additions and 2 deletions
5
ast.c
5
ast.c
|
@ -1412,10 +1412,11 @@ bool ast_block_codegen(ast_block *self, ast_function *func, bool lvalue, ir_valu
|
|||
bool ast_store_codegen(ast_store *self, ast_function *func, bool lvalue, ir_value **out)
|
||||
{
|
||||
ast_expression_codegen *cgen;
|
||||
ir_value *left, *right;
|
||||
ir_value *left = NULL;
|
||||
ir_value *right = NULL;
|
||||
|
||||
ast_value *arr;
|
||||
ast_value *idx;
|
||||
ast_value *idx = 0;
|
||||
ast_array_index *ai = NULL;
|
||||
|
||||
if (lvalue && self->expression.outl) {
|
||||
|
|
Loading…
Reference in a new issue