glsl: Switch ast_type_qualifier to the non-zeroing allocator.

All member variables of ast_type_qualifier are already being
initialized from its implicitly defined constructor, it's not
necessary to use rzalloc to allocate its memory.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Francisco Jerez
2013-09-20 16:23:30 -07:00
parent 8bd1c69f3b
commit 58d772cb41

View File

@@ -346,7 +346,7 @@ enum {
};
struct ast_type_qualifier {
DECLARE_RZALLOC_CXX_OPERATORS(ast_type_qualifier);
DECLARE_RALLOC_CXX_OPERATORS(ast_type_qualifier);
union {
struct {