Even more sonarlint work
This commit is contained in:
@@ -175,7 +175,8 @@ ROP_LOGIC(XOR, XOR, 1)
|
||||
static uint32_t
|
||||
ropTEST_b_rm(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc, codeblock_t *block)
|
||||
{
|
||||
int src_reg, dst_reg;
|
||||
int src_reg;
|
||||
int dst_reg;
|
||||
|
||||
if ((fetchdat & 0xc0) == 0xc0) {
|
||||
src_reg = LOAD_REG_B(fetchdat & 7);
|
||||
@@ -198,7 +199,8 @@ ropTEST_b_rm(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc,
|
||||
static uint32_t
|
||||
ropTEST_w_rm(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc, codeblock_t *block)
|
||||
{
|
||||
int src_reg, dst_reg;
|
||||
int src_reg;
|
||||
int dst_reg;
|
||||
|
||||
if ((fetchdat & 0xc0) == 0xc0) {
|
||||
src_reg = LOAD_REG_W(fetchdat & 7);
|
||||
@@ -221,7 +223,8 @@ ropTEST_w_rm(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc,
|
||||
static uint32_t
|
||||
ropTEST_l_rm(uint8_t opcode, uint32_t fetchdat, uint32_t op_32, uint32_t op_pc, codeblock_t *block)
|
||||
{
|
||||
int src_reg, dst_reg;
|
||||
int src_reg;
|
||||
int dst_reg;
|
||||
|
||||
if ((fetchdat & 0xc0) == 0xc0) {
|
||||
src_reg = LOAD_REG_L(fetchdat & 7);
|
||||
|
||||
Reference in New Issue
Block a user