diff options
author | Stefan Weil <sw@weilnetz.de> | 2013-09-29 17:51:20 +0200 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2013-10-02 22:55:28 +0400 |
commit | 9b2caaf40bd667492b4e6228dd3d1f5e44083456 (patch) | |
tree | 8ba2693c7b51c60d31a37888bc146eda560700f1 | |
parent | 00fdef658675ac2d019005769c426c275bceec6f (diff) | |
download | qemu-9b2caaf40bd667492b4e6228dd3d1f5e44083456.zip qemu-9b2caaf40bd667492b4e6228dd3d1f5e44083456.tar.gz qemu-9b2caaf40bd667492b4e6228dd3d1f5e44083456.tar.bz2 |
hw/alpha: Fix compiler warning (integer constant is too large)
From buildbot default_i386_rhel61:
CC alpha-softmmu/hw/alpha/typhoon.o
hw/alpha/typhoon.c: In function 'typhoon_translate_iommu':
hw/alpha/typhoon.c:703: warning: integer constant is too large for 'long' type
hw/alpha/typhoon.c:703: warning: integer constant is too large for 'long' type
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Acked-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | hw/alpha/typhoon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/alpha/typhoon.c b/hw/alpha/typhoon.c index aac9a32..59e1bb8 100644 --- a/hw/alpha/typhoon.c +++ b/hw/alpha/typhoon.c @@ -700,7 +700,7 @@ static IOMMUTLBEntry typhoon_translate_iommu(MemoryRegion *iommu, hwaddr addr) } } - if (addr >= 0x80000000000 && addr <= 0xfffffffffff) { + if (addr >= 0x80000000000ull && addr <= 0xfffffffffffull) { /* Check the fourth window for DAC enable and window enable. */ if ((pchip->win[3].wba & 0x80000000001ull) == 0x80000000001ull) { uint64_t pte_addr; |