agx: Remove dead code

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20559>
This commit is contained in:
Alyssa Rosenzweig
2023-01-06 22:30:57 -05:00
committed by Marge Bot
parent dd571ede85
commit f6c5b2a5a3

View File

@@ -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)
{