brw: Remove unused function

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33815>
This commit is contained in:
Caio Oliveira 2025-02-27 08:30:34 -08:00 committed by Marge Bot
parent 7167214cab
commit b71ec53048
2 changed files with 0 additions and 17 deletions

View file

@ -984,22 +984,6 @@ adjust_later_block_ips(bblock_t *start_block, int ip_adjustment)
}
}
void
brw_inst::insert_after(bblock_t *block, brw_inst *inst)
{
assert(this != inst);
assert(block->end_ip_delta == 0);
if (!this->is_head_sentinel())
assert(inst_is_in_block(block, this) || !"Instruction not in block");
block->end_ip++;
adjust_later_block_ips(block, 1);
exec_node::insert_after(inst);
}
void
brw_inst::insert_before(bblock_t *block, brw_inst *inst)
{

View file

@ -92,7 +92,6 @@ public:
bool uses_indirect_addressing() const;
void remove(bblock_t *block, bool defer_later_block_ip_updates = false);
void insert_after(bblock_t *block, brw_inst *inst);
void insert_before(bblock_t *block, brw_inst *inst);
/**