mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 11:30:21 +01:00
i965/cfg: Initialize cfg_t::cycle_count.
This reverts commit b4001af174.
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
b8c9ce4459
commit
ca9e30e002
2 changed files with 2 additions and 1 deletions
|
|
@ -158,6 +158,7 @@ cfg_t::cfg_t(exec_list *instructions)
|
|||
blocks = NULL;
|
||||
num_blocks = 0;
|
||||
idom_dirty = true;
|
||||
cycle_count = 0;
|
||||
|
||||
bblock_t *cur = NULL;
|
||||
int ip = 0;
|
||||
|
|
|
|||
|
|
@ -274,7 +274,7 @@ bblock_t::last_non_control_flow_inst()
|
|||
|
||||
struct cfg_t {
|
||||
#ifdef __cplusplus
|
||||
DECLARE_RZALLOC_CXX_OPERATORS(cfg_t)
|
||||
DECLARE_RALLOC_CXX_OPERATORS(cfg_t)
|
||||
|
||||
cfg_t(exec_list *instructions);
|
||||
~cfg_t();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue