]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Add missing break statement for case elfcpp::R_X86_64_PLTOFF64.
authorCary Coutant <ccoutant@google.com>
Wed, 23 Apr 2014 22:17:16 +0000 (15:17 -0700)
committerCary Coutant <ccoutant@google.com>
Wed, 23 Apr 2014 22:37:30 +0000 (15:37 -0700)
gold/
PR gold/16870
* x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.

gold/ChangeLog
gold/x86_64.cc

index 227d342e6c02ff245e9d2ef17e58a1041334f366..cf40e42b549be3e9fb952fcef7107e36841e1828 100644 (file)
@@ -1,3 +1,8 @@
+2014-04-23  Cary Coutant  <ccoutant@google.com>
+
+       PR gold/16870
+       * x86_64.cc (Target_x86_64::Relocate::relocate): Add missing break.
+
 2013-12-10  Roland McGrath  <mcgrathr@google.com>
 
        * Makefile.am (install-exec-local): Prefix $(INSTALL_PROGRAM) uses
index a0c4fce8899cacb670f694d018cbc1813027eea6..8562957d98a5e0685c028fbd1b3472ae1bdca17c 100644 (file)
@@ -3393,6 +3393,7 @@ Target_x86_64<size>::Relocate::relocate(
        Relocate_functions<size, false>::rela64(view, object, psymval,
                                                addend - got_address);
       }
+      break;
 
     case elfcpp::R_X86_64_GOT32:
       gold_assert(have_got_offset);