mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
- Remove unnecessary break statement.
- Move a label to a syntactically correct place to keep gcc from warning.
This commit is contained in:
parent
4cc03f63d1
commit
b0e28044ba
1 changed files with 1 additions and 2 deletions
|
|
@ -1577,7 +1577,6 @@ format_1_instr(int opcode, symbol_ref_t *dest, expression_t *immed,
|
|||
case AIC_OP_OR:
|
||||
dst_value = src_value | immed->value;
|
||||
break;
|
||||
break;
|
||||
case AIC_OP_BMOV:
|
||||
dst_value = src_value;
|
||||
break;
|
||||
|
|
@ -1586,9 +1585,9 @@ format_1_instr(int opcode, symbol_ref_t *dest, expression_t *immed,
|
|||
}
|
||||
src_mode = dst_value & 0xF;
|
||||
dst_mode = (dst_value >> 4) & 0xF;
|
||||
cant_update:
|
||||
}
|
||||
|
||||
cant_update:
|
||||
symlist_free(&immed->referenced_syms);
|
||||
instruction_ptr++;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue