anv: Fix a build error caused by recent fp64 NIR changes

This commit is contained in:
Jason Ekstrand 2016-04-28 10:13:42 -07:00
parent 99474dc29b
commit 6028a67641
1 changed files with 3 additions and 2 deletions

View File

@ -119,8 +119,9 @@ apply_dynamic_offsets_block(nir_block *block, void *void_state)
exec_list_push_tail(&phi->srcs, &src1->node);
b->cursor = nir_after_cf_list(&if_stmt->else_list);
nir_ssa_def *zero = nir_build_imm(b, intrin->num_components,
(nir_const_value) { .u32 = { 0, 0, 0, 0 } });
nir_const_value zero_val = { .u32 = { 0, 0, 0, 0 } };
nir_ssa_def *zero = nir_build_imm(b, intrin->dest.ssa.bit_size,
intrin->num_components, zero_val);
nir_phi_src *src2 = ralloc(phi, nir_phi_src);
struct exec_node *enode = exec_list_get_tail(&if_stmt->else_list);