mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
ir: fix vector negation using the nil value
We cannot use OFS_NULL as it is only a single value and overlaps with OFS_RETURN.
This commit is contained in:
parent
8b2149e315
commit
3f5305af58
1 changed files with 1 additions and 1 deletions
2
ir.cpp
2
ir.cpp
|
@ -1643,7 +1643,7 @@ ir_value* ir_block_create_unary(ir_block *self, lex_ctx_t ctx,
|
|||
case VINSTR_NEG_F:
|
||||
return ir_block_create_general_instr(self, ctx, label, INSTR_SUB_F, nullptr, operand, ot);
|
||||
case VINSTR_NEG_V:
|
||||
return ir_block_create_general_instr(self, ctx, label, INSTR_SUB_V, nullptr, operand, TYPE_VECTOR);
|
||||
return ir_block_create_general_instr(self, ctx, label, INSTR_SUB_V, self->m_owner->m_owner->m_nil, operand, TYPE_VECTOR);
|
||||
|
||||
default:
|
||||
ot = operand->m_vtype;
|
||||
|
|
Loading…
Reference in a new issue