Incorrect size of binop_preq_req array.

This commit is contained in:
Christoffer Lerno
2021-12-04 00:30:47 +01:00
parent 910b2179f9
commit 26325f0fd2

View File

@@ -24,7 +24,7 @@ static inline void expr_set_as_const_list(Expr *expr, ConstInitializer *list)
expr->const_expr.list = list;
}
int BINOP_PREC_REQ[BINARYOP_LAST] =
int BINOP_PREC_REQ[BINARYOP_LAST + 1] =
{
// bitwise operations
[BINARYOP_BIT_OR] = 1,