aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_vec4.cpp
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2017-07-06 18:46:43 -0700
committerMatt Turner <[email protected]>2017-08-21 14:45:44 -0700
commitf30902629cfe9341a85c1af026c80aad83cf4a6e (patch)
tree64bf2238058e7673094f0a5cc76e893dfb64ecda /src/intel/compiler/brw_vec4.cpp
parenta77d5b28ac11c6bff4c1e0439b45961bd2e0da6f (diff)
i965/vec4: Use 'class' src_reg, rather than 'struct' src_reg
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4.cpp')
-rw-r--r--src/intel/compiler/brw_vec4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_vec4.cpp b/src/intel/compiler/brw_vec4.cpp
index 020bb1760fb..9b9f5863721 100644
--- a/src/intel/compiler/brw_vec4.cpp
+++ b/src/intel/compiler/brw_vec4.cpp
@@ -1951,7 +1951,7 @@ vec4_visitor::convert_to_hw_regs()
{
foreach_block_and_inst(block, vec4_instruction, inst, cfg) {
for (int i = 0; i < 3; i++) {
- struct src_reg &src = inst->src[i];
+ class src_reg &src = inst->src[i];
struct brw_reg reg;
switch (src.file) {
case VGRF: {