pan/midgard: Remove float_bitcast

Now unused.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3588>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3588>
This commit is contained in:
Alyssa Rosenzweig 2020-01-27 13:37:36 -05:00
parent 83e1fa87a7
commit 480cf7d9bf

View file

@ -937,18 +937,6 @@ num_alu_fields_enabled(uint32_t control_word)
return ret;
}
static float
float_bitcast(uint32_t integer)
{
union {
uint32_t i;
float f;
} v;
v.i = integer;
return v.f;
}
static bool
print_alu_word(FILE *fp, uint32_t *words, unsigned num_quad_words,
unsigned tabs, unsigned next)