From b4001af1744a02f472bd1204458662088307981b Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Wed, 2 Nov 2016 07:01:35 +0000 Subject: [PATCH] i965: Use rzalloc for cfg_t MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Valgrind reports that we use cfg.cycle_count uninitialised, so zero the cfg_t on construction. Fixes: 52d2b28f7f10 ("ralloc: use rzalloc where it's necessary") Signed-off-by: Chris Wilson Reviewed-by: Marek Olšák --- src/mesa/drivers/dri/i965/brw_cfg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_cfg.h b/src/mesa/drivers/dri/i965/brw_cfg.h index b8af40f725f..ec21ae74c89 100644 --- a/src/mesa/drivers/dri/i965/brw_cfg.h +++ b/src/mesa/drivers/dri/i965/brw_cfg.h @@ -274,7 +274,7 @@ bblock_t::last_non_control_flow_inst() struct cfg_t { #ifdef __cplusplus - DECLARE_RALLOC_CXX_OPERATORS(cfg_t) + DECLARE_RZALLOC_CXX_OPERATORS(cfg_t) cfg_t(exec_list *instructions); ~cfg_t(); -- 2.30.2