mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
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:
parent
7167214cab
commit
b71ec53048
2 changed files with 0 additions and 17 deletions
|
|
@ -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);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue