chore: Add variable initialization to avoid compiler warning

This commit is contained in:
overflowerror 2024-02-28 21:57:16 +01:00
parent db26cc5182
commit 35aa317fde

View file

@ -361,7 +361,7 @@ region_t* codegen_calc_expr(FILE* out, scope_t* scope, struct calc_expression ex
region_t* operand1 = codegen_expr(out, scope, expr.operand1);
region_t* operand2 = codegen_expr(out, scope, expr.operand2);
region_t* result;
region_t* result = NULL;
switch (expr.operator) {
case ADDITION: