Add unaligned check for R_MIPS_PC16.
authorVladimir Radosavljevic <Vladimir.Radosavljevic@imgtec.com>
Mon, 20 Jun 2016 19:06:56 +0000 (12:06 -0700)
committerCary Coutant <ccoutant@gmail.com>
Mon, 20 Jun 2016 19:06:56 +0000 (12:06 -0700)
gold/
        * mips.cc (Mips_relocate_functions::relpc16): Add unaligned check.

gold/ChangeLog
gold/mips.cc

index 6d315c5..cf8289b 100644 (file)
@@ -1,5 +1,9 @@
 2016-06-20  Vladimir Radosavljevic  <Vladimir.Radosavljevic@imgtec.com>
 
+        * mips.cc (Mips_relocate_functions::relpc16): Add unaligned check.
+
+2016-06-20  Vladimir Radosavljevic  <Vladimir.Radosavljevic@imgtec.com>
+
        * mips.cc (relocation_needs_la25_stub): Add support for relocs:
        R_MIPS_PC21_S2 and R_MIPS_PC26_S2.
        (hi16_reloc): Add support for R_MIPS_PCHI16 relocation.
index cea0a81..e2b7855 100644 (file)
@@ -4690,6 +4690,9 @@ class Mips_relocate_functions : public Relocate_functions<size, big_endian>
     else
       elfcpp::Swap<32, big_endian>::writeval(wv, val);
 
+    if (psymval->value(object, addend) & 3)
+      return This::STATUS_PCREL_UNALIGNED;
+
     return check_overflow<18>(x);
   }