util/tgsi: use ASSERT_BITFIELD_SIZE() to check opcode field size
authorBrian Paul <brianp@vmware.com>
Tue, 7 Nov 2017 01:11:38 +0000 (18:11 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 17 Nov 2017 03:35:17 +0000 (20:35 -0700)
commit940fba68c903d9b4da2d99a68f1c06c53d4fe82a
tree4f20c831cb791f97742005e0a550a4b4595216b5
parentd4726b13183c45fbc0869596c128f7c030b3cd9c
util/tgsi: use ASSERT_BITFIELD_SIZE() to check opcode field size

I've noticed at least two places where we store the TGSI opcode in
an unsigned:8 bitfield.  We're at 249 opcodes now.  If we hit 256 we'll
need to grow those bitfields.  Use the new ASSERT_BITFIELD_SIZE() macro
to detect that.

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
src/gallium/auxiliary/tgsi/tgsi_info.c