diff --git a/gold/ChangeLog b/gold/ChangeLog index 01f0d34d1c..502af851c5 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2017-07-26 H.J. Lu + + * mips.cc (Mips_relocate_functions): Add "llu" suffix to + 0x800080008000. + 2017-07-23 Alan Modra * powerpc.cc (glink_eh_frame_fde_64v2): Correct advance to diff --git a/gold/mips.cc b/gold/mips.cc index 4fc160bbe9..5555562570 100644 --- a/gold/mips.cc +++ b/gold/mips.cc @@ -5664,7 +5664,7 @@ class Mips_relocate_functions : public Relocate_functions : addend_a); Valtype x = psymval->value(object, addend); - x = ((x + (uint64_t) 0x800080008000) >> 48) & 0xffff; + x = ((x + (uint64_t) 0x800080008000llu) >> 48) & 0xffff; val = Bits<32>::bit_select32(val, x, 0xffff); if (calculate_only)