pan/bi: Remove reference to 64-bit RA

Not something we plan to ever support on Bifrost. v7 needs 64-bit
lowered at the NIR level. The support for 64-bit clauses on v6 is iffy
and not worth worrying about at this point.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8215>
This commit is contained in:
Alyssa Rosenzweig
2020-12-09 14:59:34 -05:00
parent a22b85ce5e
commit 83d5dd4d1b
-2
View File
@@ -138,8 +138,6 @@ bi_adjust_src_ra(bi_instruction *ins, struct lcra_state *l, unsigned src)
nir_alu_type T = ins->src_types[src];
unsigned size = nir_alu_type_get_type_size(T);
/* TODO: 64-bit? */
unsigned components_per_word = MAX2(32 / size, 1);
for (unsigned i = 0; i < components; ++i) {