diff options
author | Alejandro Piñeiro <[email protected]> | 2016-04-19 11:15:54 +0200 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2016-05-26 08:39:07 +0200 |
commit | b9f90ef652dae687a5aff97f9132b374320638a5 (patch) | |
tree | 739e60e50394432e060270163d4b82e7e95a3d87 /src | |
parent | 5b2675093e863a52b610f112884ae12d42513770 (diff) |
glsl: add a empty set_is_lhs on ast_node
Just to allow to call set_is_lhs on any ast_node without a casting. Useful
when processing a ast_node list that we know it contain ast_expression.
v2: comment out new_value to avoid unused parameter warning (Ian Romanick)
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/glsl/ast.h | 2 | ||||
-rw-r--r-- | src/compiler/glsl/ast_to_hir.cpp | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler/glsl/ast.h b/src/compiler/glsl/ast.h index fb25bb357a3..ca98ed2834d 100644 --- a/src/compiler/glsl/ast.h +++ b/src/compiler/glsl/ast.h @@ -126,6 +126,8 @@ public: exec_node link; + virtual void set_is_lhs(bool); + protected: /** * The only constructor is protected so that only derived class objects can diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index 22bc0083326..e1e26f8f6ac 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++ b/src/compiler/glsl/ast_to_hir.cpp @@ -1054,6 +1054,11 @@ ast_node::has_sequence_subexpression() const } void +ast_node::set_is_lhs(bool /* new_value */) +{ +} + +void ast_function_expression::hir_no_rvalue(exec_list *instructions, struct _mesa_glsl_parse_state *state) { |