From: Gert Wollny Date: Wed, 6 May 2020 16:48:35 +0000 (+0200) Subject: r600: Fix warning regarding mixing enums and unsigned in ?: expression X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a6321c4b5a038db4682e49e098e9368df7ea18c4;p=mesa.git r600: Fix warning regarding mixing enums and unsigned in ?: expression Signed-off-by: Gert Wollny Reviewed-by: Michel Dänzer Part-of: --- diff --git a/src/gallium/drivers/r600/sb/sb_bc_parser.cpp b/src/gallium/drivers/r600/sb/sb_bc_parser.cpp index 6b19d61babe..abbb26c13c1 100644 --- a/src/gallium/drivers/r600/sb/sb_bc_parser.cpp +++ b/src/gallium/drivers/r600/sb/sb_bc_parser.cpp @@ -476,7 +476,7 @@ int bc_parser::prepare_alu_group(cf_node* cf, alu_group_node *g) { n->src[s] = sh->get_const_value(src.value); } else if (src.sel == ALU_SRC_PS || src.sel == ALU_SRC_PV) { unsigned pgroup = !cgroup, prev_slot = src.sel == ALU_SRC_PS ? - SLOT_TRANS : src.chan; + ((unsigned)SLOT_TRANS) : src.chan; // XXX shouldn't happen but llvm backend uses PS on cayman if (prev_slot == SLOT_TRANS && ctx.is_cayman())