mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
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é <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user