r600/sb: Fix initialization order in sb_shader
Closes https://gitlab.freedesktop.org/mesa/mesa/-/issues/7608 Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19955>
This commit is contained in:
@@ -37,7 +37,7 @@ shader::shader(sb_context &sctx, shader_target t, unsigned id)
|
||||
pool(), all_nodes(), src_stats(), opt_stats(), errors(),
|
||||
optimized(), id(id),
|
||||
coal(*this), bbs(),
|
||||
target(t), vt(ex), ex(*this), root(),
|
||||
target(t), ex(*this), vt(ex), root(),
|
||||
compute_interferences(),
|
||||
has_alu_predication(),
|
||||
uses_gradients(), safe_math(), ngpr(), nstack(), dce_flags() {}
|
||||
|
||||
@@ -293,9 +293,10 @@ public:
|
||||
|
||||
const shader_target target;
|
||||
|
||||
value_table vt;
|
||||
expr_handler ex;
|
||||
|
||||
value_table vt;
|
||||
|
||||
container_node *root;
|
||||
|
||||
bool compute_interferences;
|
||||
|
||||
Reference in New Issue
Block a user