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:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user