From f6c5b2a5a3d9cb21c3b51255219b53bfe046592d Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 6 Jan 2023 22:30:57 -0500 Subject: [PATCH] agx: Remove dead code Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_compile.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/asahi/compiler/agx_compile.c b/src/asahi/compiler/agx_compile.c index 9716bd128a8..162ec23f5b6 100644 --- a/src/asahi/compiler/agx_compile.c +++ b/src/asahi/compiler/agx_compile.c @@ -321,14 +321,6 @@ agx_umul_high_to(agx_builder *b, agx_index dst, agx_index P, agx_index Q) return split; } -static agx_index -agx_umul_high(agx_builder *b, agx_index P, agx_index Q) -{ - agx_index dst = agx_temp(b->shader, P.size); - agx_umul_high_to(b, dst, P, Q); - return dst; -} - static enum agx_format agx_format_for_pipe(enum pipe_format format) {