summaryrefslogtreecommitdiffstats
path: root/tcg
diff options
context:
space:
mode:
authorRichard Henderson2022-03-30 00:56:49 +0200
committerRichard Henderson2022-03-31 19:03:59 +0200
commit7ceee3a19b31818e6f7c8e429e25b219aefa8dd6 (patch)
treef516452876f8e37d9f3c75b7abdb59cd566f0d9b /tcg
parentMerge tag 'pull-qapi-2022-03-31' of git://repo.or.cz/qemu/armbru into staging (diff)
downloadqemu-7ceee3a19b31818e6f7c8e429e25b219aefa8dd6.tar.gz
qemu-7ceee3a19b31818e6f7c8e429e25b219aefa8dd6.tar.xz
qemu-7ceee3a19b31818e6f7c8e429e25b219aefa8dd6.zip
tcg/aarch64: Use 'ull' suffix to force 64-bit constant
Typo used only 'ul' suffix, which is still 32-bits for windows host. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/947 Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r--tcg/aarch64/tcg-target.c.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcg/aarch64/tcg-target.c.inc b/tcg/aarch64/tcg-target.c.inc
index 077fc51401..5e67f881f1 100644
--- a/tcg/aarch64/tcg-target.c.inc
+++ b/tcg/aarch64/tcg-target.c.inc
@@ -1086,9 +1086,9 @@ static void tcg_out_movi(TCGContext *s, TCGType type, TCGReg rd,
opc = I3405_MOVZ;
}
s0 = ctz64(t0) & (63 & -16);
- t1 = t0 & ~(0xffffUL << s0);
+ t1 = t0 & ~(0xffffull << s0);
s1 = ctz64(t1) & (63 & -16);
- t2 = t1 & ~(0xffffUL << s1);
+ t2 = t1 & ~(0xffffull << s1);
if (t2 == 0) {
tcg_out_insn_3405(s, opc, type, rd, t0 >> s0, s0);
if (t1 != 0) {