mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
pan/bi: Remove old IR instruction emit
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8135>
This commit is contained in:
parent
b691aeaacf
commit
cf5b2b8939
1 changed files with 0 additions and 18 deletions
|
|
@ -823,24 +823,6 @@ typedef struct {
|
|||
unsigned fills;
|
||||
} bi_context;
|
||||
|
||||
static inline bi_instruction *
|
||||
bi_emit(bi_context *ctx, bi_instruction ins)
|
||||
{
|
||||
bi_instruction *u = rzalloc(ctx, bi_instruction);
|
||||
memcpy(u, &ins, sizeof(ins));
|
||||
list_addtail(&u->link, &ctx->current_block->base.instructions);
|
||||
return u;
|
||||
}
|
||||
|
||||
static inline bi_instruction *
|
||||
bi_emit_before(bi_context *ctx, bi_instruction *tag, bi_instruction ins)
|
||||
{
|
||||
bi_instruction *u = rzalloc(ctx, bi_instruction);
|
||||
memcpy(u, &ins, sizeof(ins));
|
||||
list_addtail(&u->link, &tag->link);
|
||||
return u;
|
||||
}
|
||||
|
||||
static inline void
|
||||
bi_remove_instruction(bi_instruction *ins)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue