mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
tcg-sparc: Fix imm13 check in movi.
We were unnecessarily restricting imm13 constants to 12 bits. Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
committed by
Blue Swirl
parent
21a8894168
commit
4a09aa895e
@@ -302,7 +302,7 @@ static inline void tcg_out_movi_imm13(TCGContext *s, int ret, uint32_t arg)
|
||||
|
||||
static inline void tcg_out_movi_imm32(TCGContext *s, int ret, uint32_t arg)
|
||||
{
|
||||
if (check_fit_tl(arg, 12))
|
||||
if (check_fit_tl(arg, 13))
|
||||
tcg_out_movi_imm13(s, ret, arg);
|
||||
else {
|
||||
tcg_out_sethi(s, ret, arg);
|
||||
|
||||
Reference in New Issue
Block a user