Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions arch/ARM/ARMGenDisassemblerTables.inc
Original file line number Diff line number Diff line change
Expand Up @@ -95167,7 +95167,7 @@ static bool checkDecoderPredicate(MCInst *Inst, unsigned Idx)
Ptr += Len; \
MCInst_clear(MI); \
MCInst_setOpcode(MI, Opc); \
bool DecodeComplete; \
bool DecodeComplete = false; \
S = decoder(S, DecodeIdx, insn, MI, Address, \
&DecodeComplete); \
return S; \
Expand All @@ -95185,7 +95185,7 @@ static bool checkDecoderPredicate(MCInst *Inst, unsigned Idx)
NumToSkip |= (*Ptr++) << 16; \
/* Perform the decode operation. */ \
MCInst_setOpcode(MI, Opc); \
bool DecodeComplete; \
bool DecodeComplete = false; \
S = decoder(S, DecodeIdx, insn, MI, Address, \
&DecodeComplete); \
if (DecodeComplete) { \
Expand Down
2 changes: 1 addition & 1 deletion arch/PowerPC/PPCGenDisassemblerTables.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9819,7 +9819,7 @@ static DecodeStatus fname(const uint8_t DecodeTable[], MCInst *MI, \
NumToSkip |= (*Ptr++) << 16; \
/* Perform the decode operation. */ \
MCInst_setOpcode(MI, Opc); \
bool DecodeComplete; \
bool DecodeComplete = false; \
S = decoder(S, DecodeIdx, insn, MI, Address, &DecodeComplete); \
if (DecodeComplete) { \
/* Decoding complete. */ \
Expand Down
4 changes: 2 additions & 2 deletions arch/RISCV/RISCVGenDisassemblerTables.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1720,7 +1720,7 @@ static DecodeStatus fname(const uint8_t DecodeTable[], MCInst *MI,\
\
MCInst_clear(MI);\
MCInst_setOpcode(MI, Opc);\
bool DecodeComplete;\
bool DecodeComplete = false;\
S = decoder(S, DecodeIdx, insn, MI, Address, DisAsm, &DecodeComplete);\
CS_ASSERT(DecodeComplete);\
\
Expand All @@ -1738,7 +1738,7 @@ static DecodeStatus fname(const uint8_t DecodeTable[], MCInst *MI,\
\
MCInst TmpMI;\
MCInst_setOpcode(&TmpMI, Opc);\
bool DecodeComplete;\
bool DecodeComplete = false;\
S = decoder(S, DecodeIdx, insn, &TmpMI, Address, DisAsm, &DecodeComplete);\
\
if (DecodeComplete) {\
Expand Down