mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-20 23:10:30 +01:00
i965: Delete brw_set_conditionalmod.
This removes the ability to set the default conditional modifier on all future instructions. Nothing uses it, and it's not really a sensible thing to do anyway. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
fea7b97742
commit
76d7160c6c
3 changed files with 0 additions and 13 deletions
|
|
@ -98,11 +98,6 @@ void brw_set_predicate_inverse(struct brw_compile *p, bool predicate_inverse)
|
|||
p->current->header.predicate_inverse = predicate_inverse;
|
||||
}
|
||||
|
||||
void brw_set_conditionalmod( struct brw_compile *p, unsigned conditional )
|
||||
{
|
||||
p->current->header.destreg__conditionalmod = conditional;
|
||||
}
|
||||
|
||||
void brw_set_flag_reg(struct brw_compile *p, int reg, int subreg)
|
||||
{
|
||||
p->current->bits2.da1.flag_reg_nr = reg;
|
||||
|
|
|
|||
|
|
@ -104,7 +104,6 @@ void brw_set_access_mode( struct brw_compile *p, unsigned access_mode );
|
|||
void brw_set_compression_control(struct brw_compile *p, enum brw_compression c);
|
||||
void brw_set_predicate_control( struct brw_compile *p, unsigned pc );
|
||||
void brw_set_predicate_inverse(struct brw_compile *p, bool predicate_inverse);
|
||||
void brw_set_conditionalmod( struct brw_compile *p, unsigned conditional );
|
||||
void brw_set_flag_reg(struct brw_compile *p, int reg, int subreg);
|
||||
void brw_set_acc_write_control(struct brw_compile *p, unsigned value);
|
||||
|
||||
|
|
|
|||
|
|
@ -851,13 +851,6 @@ brw_next_insn(struct brw_compile *p, unsigned opcode)
|
|||
insn = &p->store[p->nr_insn++];
|
||||
memcpy(insn, p->current, sizeof(*insn));
|
||||
|
||||
/* Reset this one-shot flag:
|
||||
*/
|
||||
|
||||
if (p->current->header.destreg__conditionalmod) {
|
||||
p->current->header.destreg__conditionalmod = 0;
|
||||
}
|
||||
|
||||
insn->header.opcode = opcode;
|
||||
return insn;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue