* elfxx-mips.c (mips_elf_merge_obj_attributes): Prevent
authorThiemo Seufer <ths@networkno.de>
Wed, 14 Nov 2007 20:04:22 +0000 (20:04 +0000)
committerThiemo Seufer <ths@networkno.de>
Wed, 14 Nov 2007 20:04:22 +0000 (20:04 +0000)
unwanted fallthroughs in case statement.

bfd/ChangeLog
bfd/elfxx-mips.c

index d9470a26455386d398ef9d90f953e6c73f2aa52f..a92ac2334464f7905796203197d1562561b8321a 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-14  Thiemo Seufer  <ths@mips.com>
+
+       * elfxx-mips.c (mips_elf_merge_obj_attributes): Prevent
+       unwanted fallthroughs in case statement.
+
 2007-11-13  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR binutils/5307
index 217cd9207bea12132de316367794547859d9889f..73959f167ee91428606705bbb02bc65eea579161 100644 (file)
@@ -11073,6 +11073,7 @@ mips_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
                _bfd_error_handler
                  (_("Warning: %B uses -msingle-float, %B uses -mdouble-float"),
                   obfd, ibfd);
+               break;
 
              case 3:
                _bfd_error_handler
@@ -11092,6 +11093,7 @@ mips_elf_merge_obj_attributes (bfd *ibfd, bfd *obfd)
                _bfd_error_handler
                  (_("Warning: %B uses -msingle-float, %B uses -mdouble-float"),
                   ibfd, obfd);
+               break;
 
              case 3:
                _bfd_error_handler
This page took 0.031116 seconds and 4 git commands to generate.