From 000b49deb09fdc275f5aae27c086bc09a3af0d5e Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 18 Jan 2022 09:03:01 -0400 Subject: Initialize `tmp`, and `tmp2` to `0`, rather than `-1`. --- sux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sux.h b/sux.h index e89dbc7..c626bc9 100644 --- a/sux.h +++ b/sux.h @@ -1793,7 +1793,7 @@ static /*inline*/ void exec_base_inst(struct sux *cpu, uint8_t opcode, uint8_t p static /*inline*/ void inst_##op(struct sux *cpu, uint8_t prefix, uint8_t size, int inc_pc, int inc_clk, uint8_t thread) { \ const unsigned int o8 = 0x##op / 32, o8m = 1 << (0x##op % 32); \ const uint8_t rs = 1 << ((prefix >> 4) & 3); \ - uint64_t addr = 0, idx = 0, tmp = -1, tmp2 = -1; \ + uint64_t addr = 0, idx = 0, tmp = 0, tmp2 = 0; \ uint64_t dummy = 0, *reg = &dummy; \ int pre_idx = 0, mem_type = ZM; \ uint8_t pbits = 0x##op < 0x100 ? 0x10 : 0; \ -- cgit v1.2.3-13-gbd6f