spirv: s/uint/unsigned/ to fix MSVC build

Reviewed-by: Neil Roberts <nroberts@igalia.com>
This commit is contained in:
Brian Paul 2018-03-30 11:30:05 -06:00
parent f3164c2ed9
commit 26bc983c83
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ vtn_cfg_walk_blocks(struct vtn_builder *b, struct list_head *cf_list,
"Selector of OpSelect must have a type of OpTypeInt");
bool is_default = true;
const uint bitsize = nir_alu_type_get_type_size(cond_type);
const unsigned bitsize = nir_alu_type_get_type_size(cond_type);
for (const uint32_t *w = block->branch + 2; w < branch_end;) {
uint64_t literal = 0;
if (!is_default) {