diff --git a/src/panfrost/bifrost/ISA.xml b/src/panfrost/bifrost/ISA.xml index e1eb918eef3..d5b61030518 100644 --- a/src/panfrost/bifrost/ISA.xml +++ b/src/panfrost/bifrost/ISA.xml @@ -1986,7 +1986,7 @@ - + @@ -7395,7 +7395,7 @@ - + diff --git a/src/panfrost/bifrost/bi_packer.c.py b/src/panfrost/bifrost/bi_packer.c.py index 0c63ed60e59..c014519f5cc 100644 --- a/src/panfrost/bifrost/bi_packer.c.py +++ b/src/panfrost/bifrost/bi_packer.c.py @@ -310,7 +310,7 @@ bi_pack_${'fma' if unit == '*' else 'add'}(bi_instr *I, enum bifrost_packed_src src3) { if (!I) - return bi_pack_${opname_to_c(unit + 'NOP.i32')}(I, src0, src1, src2, src3); + return bi_pack_${opname_to_c(unit + 'NOP')}(I, src0, src1, src2, src3); % if unit == '*': assert((1 << src0) & 0xfb); diff --git a/src/panfrost/bifrost/bi_schedule.c b/src/panfrost/bifrost/bi_schedule.c index 3392c899fb4..89f139e025b 100644 --- a/src/panfrost/bifrost/bi_schedule.c +++ b/src/panfrost/bifrost/bi_schedule.c @@ -1905,7 +1905,7 @@ bi_add_nop_for_atest(bi_context *ctx) * execute */ bi_instr *I = rzalloc(ctx, bi_instr); - I->op = BI_OPCODE_NOP_I32; + I->op = BI_OPCODE_NOP; I->dest[0] = bi_null(); bi_clause *new_clause = ralloc(ctx, bi_clause);