diff options
author | Rob Clark <[email protected]> | 2018-03-27 14:52:55 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2018-03-27 15:01:11 -0400 |
commit | 16581904b0b325c8b6d9abe81462c33e6b99a644 (patch) | |
tree | c7e5109ecdb86ec7aa214d13585343b07a1d944d /src/compiler | |
parent | eda2f58d15f2fe99e7c868d37280e19c70ecb511 (diff) |
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: 76dfed8ae2d5c6c509eb2661389be3c6a25077df
Reported-by: Roland Scheidegger <[email protected]>
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/nir/nir_intrinsics_c.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_intrinsics_c.py b/src/compiler/nir/nir_intrinsics_c.py index 556db785c2b..339214ac53e 100644 --- a/src/compiler/nir/nir_intrinsics_c.py +++ b/src/compiler/nir/nir_intrinsics_c.py @@ -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 |