From: Francisco Jerez Date: Fri, 20 Sep 2013 23:23:30 +0000 (-0700) Subject: glsl: Switch ast_type_qualifier to the non-zeroing allocator. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=58d772cb41b71dd3f5cf2bd4afb5781327ab4495;p=mesa.git 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 --- diff --git a/src/glsl/ast.h b/src/glsl/ast.h index 320e8ddd0e5..97905c6a6d1 100644 --- a/src/glsl/ast.h +++ b/src/glsl/ast.h @@ -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 {