projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afff809
)
glsl: silence warning about unhandled ast_unsized_array_dim case in switch
author
Brian Paul
<brianp@vmware.com>
Thu, 15 Oct 2015 13:26:49 +0000
(07:26 -0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 16 Oct 2015 17:34:05 +0000
(11:34 -0600)
Reviewed-by: Timothy Arceri <t_arceri@yahoo.com.au>
src/glsl/ast_to_hir.cpp
patch
|
blob
|
history
diff --git
a/src/glsl/ast_to_hir.cpp
b/src/glsl/ast_to_hir.cpp
index cd40fe343e3e5fbd5efa2c17b970f16c765e2d6c..ede02d94cb25af1e1de2ba18a9114fca98243b66 100644
(file)
--- a/
src/glsl/ast_to_hir.cpp
+++ b/
src/glsl/ast_to_hir.cpp
@@
-2017,6
+2017,9
@@
ast_expression::has_sequence_subexpression() const
case ast_function_call:
unreachable("should be handled by ast_function_expression::hir");
+
+ case ast_unsized_array_dim:
+ unreachable("ast_unsized_array_dim: Should never get here.");
}
return false;