nir: fix generated nir_intrinsics.c for MSVC

Apparently it is not happy about things like: .foo = {}

So skip over initializers for empty lists.

Fixes: 76dfed8ae2
Reported-by: Roland Scheidegger <sroland@vmware.com>
Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
Rob Clark 2018-03-27 14:52:55 -04:00
parent eda2f58d15
commit 16581904b0
1 changed files with 4 additions and 0 deletions

View File

@ -29,18 +29,22 @@ const nir_intrinsic_info nir_intrinsic_infos[nir_num_intrinsics] = {
{
.name = "${name}",
.num_srcs = ${opcode.num_srcs},
% if opcode.src_components:
.src_components = {
${", ".join(str(comp) for comp in opcode.src_components)}
},
% endif
.has_dest = ${"true" if opcode.has_dest else "false"},
.dest_components = ${opcode.dest_components},
.num_variables = ${opcode.num_variables},
.num_indices = ${opcode.num_indices},
% if opcode.indices:
.index_map = {
% for i in range(len(opcode.indices)):
[${opcode.indices[i]}] = ${i + 1},
% endfor
},
% endif
.flags = ${"0" if len(opcode.flags) == 0 else " | ".join(opcode.flags)},
},
% endfor