pan/bi: Export bi_class_name

For use in naming tests.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4458>
This commit is contained in:
Alyssa Rosenzweig 2020-04-01 16:23:12 -04:00 committed by Marge Bot
parent c04964c690
commit 08fe1081b7
2 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,7 @@ bi_ldst_type_name(enum bifrost_ldst_type type)
/* The remaining functions in this file are for IR-internal
* structures; the disassembler doesn't use them */
static const char *
const char *
bi_class_name(enum bi_class cl)
{
switch (cl) {

View File

@ -38,6 +38,7 @@ const char * bi_round_mode_name(enum bifrost_roundmode mod);
const char * bi_csel_cond_name(enum bifrost_csel_cond cond);
const char * bi_interp_mode_name(enum bifrost_interp_mode mode);
const char * bi_ldst_type_name(enum bifrost_ldst_type type);
const char * bi_class_name(enum bi_class cl);
void bi_print_instruction(bi_instruction *ins, FILE *fp);
void bi_print_bundle(bi_bundle *bundle, FILE *fp);