mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
INSTR_NOT_* output to opC not opB...
This commit is contained in:
parent
31ba1ec6c1
commit
b4225ea98a
1 changed files with 2 additions and 4 deletions
6
ir.c
6
ir.c
|
@ -2287,10 +2287,8 @@ tailcall:
|
|||
stmt.o1.u1 = stmt.o3.u1;
|
||||
stmt.o3.u1 = 0;
|
||||
}
|
||||
else if ((stmt.opcode >= INSTR_STORE_F &&
|
||||
stmt.opcode <= INSTR_STORE_FNC) ||
|
||||
(stmt.opcode >= INSTR_NOT_F &&
|
||||
stmt.opcode <= INSTR_NOT_FNC))
|
||||
else if (stmt.opcode >= INSTR_STORE_F &&
|
||||
stmt.opcode <= INSTR_STORE_FNC)
|
||||
{
|
||||
/* 2-operand instructions with A -> B */
|
||||
stmt.o2.u1 = stmt.o3.u1;
|
||||
|
|
Loading…
Reference in a new issue