agx: Use agx_first_instr
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>
Tue, 29 Aug 2023 21:01:43 +0000 (17:01 -0400)
committerMarge Bot <emma+marge@anholt.net>
Tue, 5 Sep 2023 18:50:34 +0000 (18:50 +0000)
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25052>

src/asahi/compiler/agx_opt_empty_else.c

index 653782b..fc0ac54 100644 (file)
@@ -92,9 +92,7 @@ agx_opt_empty_else(agx_context *ctx)
 {
    agx_foreach_block(ctx, blk) {
       if (match_block(blk)) {
-         agx_instr *else_instr =
-            list_first_entry(&blk->instructions, agx_instr, link);
-
+         agx_instr *else_instr = agx_first_instr(blk);
          assert(state_for_instr(else_instr) == STATE_ELSE && "block matched");
 
          agx_remove_instruction(else_instr);