Commit 3db91d7e by Richard Henderson Committed by Richard Henderson

alpha.c (HWI_HEX2): Add missing shift.

        * config/alpha/alpha.c (HWI_HEX2): Add missing shift.
        * vmsdbgout.c (VMS_EPOCH_OFFSET): Add LL suffix.

From-SVN: r188413
parent fce77664
2012-06-11 Richard Henderson <rth@redhat.com>
* config/alpha/alpha.c (HWI_HEX2): Add missing shift.
* vmsdbgout.c (VMS_EPOCH_OFFSET): Add LL suffix.
* config/alpha/alpha.c (alpha_trampoline_init): Split large constants.
2012-06-12 Hans-Peter Nilsson <hp@axis.com>
......
......@@ -5451,7 +5451,7 @@ alpha_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
chain_value = convert_memory_address (Pmode, chain_value);
#endif
#define HWI_HEX2(X,Y) (((HOST_WIDE_INT)0x ## X ## u) | 0x ## Y ## u)
#define HWI_HEX2(X,Y) (((HOST_WIDE_INT)0x ## X ## u << 32) | 0x ## Y ## u)
if (TARGET_ABI_OPEN_VMS)
{
......
......@@ -1676,7 +1676,7 @@ to_vms_file_spec (char *filespec)
}
#else
#define VMS_EPOCH_OFFSET 35067168000000000
#define VMS_EPOCH_OFFSET 35067168000000000LL
#define VMS_GRANULARITY_FACTOR 10000000
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment