diff options
author | Jason Ekstrand <[email protected]> | 2019-11-11 09:37:50 -0600 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-11-12 08:34:55 +0000 |
commit | 0c7e0c5599af71d4a840305394d3b2d926eef934 (patch) | |
tree | bcbdf4fec042682bc50fe3201f29b824ceb6029c /src/compiler/spirv | |
parent | 9b8964d06473bda4972c3f00ef68025bf2206c3e (diff) |
spirv: Fix the MSVC build
Fixes: 9cc4c2c91649b "spirv: Add a vtn_decorate_pointer helper"
Tested-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Diffstat (limited to 'src/compiler/spirv')
-rw-r--r-- | src/compiler/spirv/vtn_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c index 944d1f006d6..4a9e031a9f8 100644 --- a/src/compiler/spirv/vtn_variables.c +++ b/src/compiler/spirv/vtn_variables.c @@ -50,7 +50,7 @@ static struct vtn_pointer* vtn_decorate_pointer(struct vtn_builder *b, struct vtn_value *val, struct vtn_pointer *ptr) { - struct vtn_pointer dummy = { }; + struct vtn_pointer dummy = { .access = 0 }; vtn_foreach_decoration(b, val, ptr_decoration_cb, &dummy); /* If we're adding access flags, make a copy of the pointer. We could |