summaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_fs.cpp
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-07-26 17:31:36 -0700
committerMatt Turner <[email protected]>2017-08-21 14:05:23 -0700
commit6a2471b5014f5ecc6b96a1a9c228f9ee3d0fdb98 (patch)
treeee9a14c7f3b5556164863e1c1b70908c0882b62f /src/intel/compiler/brw_fs.cpp
parent1cb0a7941b27d368bc973d22b3a4db091a1852e4 (diff)
i965: Move brw_reg_type_letters() as well
And add "to_" to the name for consistency with the other functions in this file. Reviewed-by: Scott D Phillips <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_fs.cpp')
-rw-r--r--src/intel/compiler/brw_fs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp
index 0ea4c4f1ccb..b48dc4167e7 100644
--- a/src/intel/compiler/brw_fs.cpp
+++ b/src/intel/compiler/brw_fs.cpp
@@ -5346,7 +5346,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
if (inst->dst.stride != 1)
fprintf(file, "<%u>", inst->dst.stride);
- fprintf(file, ":%s, ", brw_reg_type_letters(inst->dst.type));
+ fprintf(file, ":%s, ", brw_reg_type_to_letters(inst->dst.type));
for (int i = 0; i < inst->sources; i++) {
if (inst->src[i].negate)
@@ -5443,7 +5443,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
if (stride != 1)
fprintf(file, "<%u>", stride);
- fprintf(file, ":%s", brw_reg_type_letters(inst->src[i].type));
+ fprintf(file, ":%s", brw_reg_type_to_letters(inst->src[i].type));
}
if (i < inst->sources - 1 && inst->src[i + 1].file != BAD_FILE)