mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 12:22:26 +00:00
fix -fsort-operands
This commit is contained in:
parent
ddcae703e3
commit
da63ad7e07
1 changed files with 1 additions and 1 deletions
2
code.cpp
2
code.cpp
|
@ -80,7 +80,7 @@ void code_push_statement(code_t *code, prog_section_statement_t *stmt_in, lex_ct
|
|||
case INSTR_MUL_FV: pair = INSTR_MUL_VF; goto case_pair_gen;
|
||||
case INSTR_LT: pair = INSTR_GT; goto case_pair_gen;
|
||||
case INSTR_GT: pair = INSTR_LT; goto case_pair_gen;
|
||||
case INSTR_LE: pair = INSTR_GT; goto case_pair_gen;
|
||||
case INSTR_LE: pair = INSTR_GE; goto case_pair_gen;
|
||||
case INSTR_GE: pair = INSTR_LE;
|
||||
|
||||
case_pair_gen:
|
||||
|
|
Loading…
Reference in a new issue