mirror of https://github.com/xqemu/xqemu.git
hw/ppc/spapr_hcall.c: Add ULL suffix to 64 bit constant
Add ULL suffix to 64 bit constant to prevent compiler warnings on some 32 bit platforms. Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d614cb68da
commit
b653282ecc
|
@ -770,7 +770,7 @@ static target_ulong h_set_mode_resouce_addr_trans_mode(PowerPCCPU *cpu,
|
||||||
prefix = 0x18000;
|
prefix = 0x18000;
|
||||||
break;
|
break;
|
||||||
case H_SET_MODE_ADDR_TRANS_C000_0000_0000_4000:
|
case H_SET_MODE_ADDR_TRANS_C000_0000_0000_4000:
|
||||||
prefix = 0xC000000000004000;
|
prefix = 0xC000000000004000ULL;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return H_UNSUPPORTED_FLAG;
|
return H_UNSUPPORTED_FLAG;
|
||||||
|
|
Loading…
Reference in New Issue