From 1185ac931f9337cd1f2a029b6d7dd7739b77d151 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sat, 8 Apr 2023 23:05:49 -0400 Subject: [PATCH] agx: Remove bogus assert I->mask isn't even valid for iter instructions. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_pack.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/asahi/compiler/agx_pack.c b/src/asahi/compiler/agx_pack.c index 883a3447604..f7da2b08e33 100644 --- a/src/asahi/compiler/agx_pack.c +++ b/src/asahi/compiler/agx_pack.c @@ -525,7 +525,6 @@ agx_pack_instr(struct util_dynarray *emission, struct util_dynarray *fixups, bool flat = (I->op == AGX_OPCODE_LDCF); unsigned D = agx_pack_alu_dst(I->dest[0]); unsigned channels = (I->channels & 0x3); - assert(I->mask < 0xF); /* 0 indicates full mask */ agx_index src_I = I->src[0]; assert(src_I.type == AGX_INDEX_IMMEDIATE);