summaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/hir_field_selection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/glsl/hir_field_selection.cpp')
-rw-r--r--src/compiler/glsl/hir_field_selection.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/compiler/glsl/hir_field_selection.cpp b/src/compiler/glsl/hir_field_selection.cpp
index aa1808afa15..9f23643fd02 100644
--- a/src/compiler/glsl/hir_field_selection.cpp
+++ b/src/compiler/glsl/hir_field_selection.cpp
@@ -46,8 +46,7 @@ _mesa_ast_field_selection_to_hir(const ast_expression *expr,
YYLTYPE loc = expr->get_location();
if (op->type->is_error()) {
/* silently propagate the error */
- } else if (op->type->base_type == GLSL_TYPE_STRUCT
- || op->type->is_interface()) {
+ } else if (op->type->is_record() || op->type->is_interface()) {
result = new(ctx) ir_dereference_record(op,
expr->primary_expression.identifier);