diff options
author | Brian Paul <[email protected]> | 2013-06-06 09:46:40 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-06-07 09:23:24 -0600 |
commit | 14541dacab218cbe82310d999d44130ebc3f6526 (patch) | |
tree | 1295e6f153bf8c3276f12ad51837bef67a4a81d4 /src/gallium/drivers/freedreno | |
parent | 97d641eb229e48cacc448eefb583381a27bd8af1 (diff) |
tgsi: replace tgsi_file_names tgsi_file_names[] with tgsi_file_name() function
This change came from the discovery that the STATIC_ASSERT to check that
the number of register file strings didn't actually work.
Similar changes could be made for the other string arrays in tgsi_string.c
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_compiler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_compiler.c b/src/gallium/drivers/freedreno/freedreno_compiler.c index 1a596f50f6b..8d1e266d46a 100644 --- a/src/gallium/drivers/freedreno/freedreno_compiler.c +++ b/src/gallium/drivers/freedreno/freedreno_compiler.c @@ -339,7 +339,7 @@ add_dst_reg(struct fd_compile_context *ctx, struct ir2_instruction *alu, break; default: DBG("unsupported dst register file: %s", - tgsi_file_names[dst->File]); + tgsi_file_name(dst->File)); assert(0); break; } @@ -385,7 +385,7 @@ add_src_reg(struct fd_compile_context *ctx, struct ir2_instruction *alu, break; default: DBG("unsupported src register file: %s", - tgsi_file_names[src->File]); + tgsi_file_name(src->File)); assert(0); break; } |