st/mesa: Switch glsl_to_tgsi_instruction to the non-zeroing allocator.
authorFrancisco Jerez <currojerez@riseup.net>
Mon, 30 Sep 2013 17:54:48 +0000 (10:54 -0700)
committerFrancisco Jerez <currojerez@riseup.net>
Wed, 2 Oct 2013 00:30:52 +0000 (17:30 -0700)
All member variables of glsl_to_tgsi_instruction 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>
src/mesa/state_tracker/st_glsl_to_tgsi.cpp

index 2bc6623c008c7d3236eb0a612f48344696c5d3f2..a5d0b84e391f469304aeba99ef48f714bd25a979 100644 (file)
@@ -217,7 +217,7 @@ st_dst_reg::st_dst_reg(st_src_reg reg)
 
 class glsl_to_tgsi_instruction : public exec_node {
 public:
-   DECLARE_RZALLOC_CXX_OPERATORS(glsl_to_tgsi_instruction)
+   DECLARE_RALLOC_CXX_OPERATORS(glsl_to_tgsi_instruction)
 
    unsigned op;
    st_dst_reg dst;