From: Richard Henderson Date: Tue, 9 Nov 2021 22:17:59 +0000 (+0100) Subject: tcg/optimize: Add an extra cast to fold_extract2 X-Git-Tag: v6.2.0-rc1~8^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=225bec0c0e42b5b0be3007fd01de6e082a8ee9bf;p=thirdparty%2Fqemu.git tcg/optimize: Add an extra cast to fold_extract2 There is no bug, but silence a warning about computation in int32_t being assigned to a uint64_t. Reported-by: Coverity CID 1465220 Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- diff --git a/tcg/optimize.c b/tcg/optimize.c index dbb2d46e885..2397f2cf93a 100644 --- a/tcg/optimize.c +++ b/tcg/optimize.c @@ -1365,7 +1365,7 @@ static bool fold_extract2(OptContext *ctx, TCGOp *op) v2 <<= 64 - shr; } else { v1 = (uint32_t)v1 >> shr; - v2 = (int32_t)v2 << (32 - shr); + v2 = (uint64_t)((int32_t)v2 << (32 - shr)); } return tcg_opt_gen_movi(ctx, op, op->args[0], v1 | v2); }