Fixed buglet displaying machine architecture.
authorNick Clifton <nickc@redhat.com>
Tue, 9 Sep 1997 17:20:41 +0000 (17:20 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 9 Sep 1997 17:20:41 +0000 (17:20 +0000)
bfd/ChangeLog
bfd/elf32-v850.c

index f8b092a46178e3b442fb96738b0d441d5f99b533..6b3607c329daa8cc1161698525b90f8280ead772 100644 (file)
@@ -1,3 +1,8 @@
+Tue Sep  9 10:21:56 1997  Nick Clifton  <nickc@cygnus.com>
+
+       * elf32-v850.c (v850_elf_print_private_bfd_data): Break after
+       decoding architecture.
+
 Sun Sep  7 12:25:22 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
 
        * bfd/elf64-alpha.c (reloc_howto_type): Fix the howto table.
index 55e6675a9b0833ebde92efe391317e5d39774a5b..c29d14520baf3e6e8979ddf7f7c71b5ef40e1a82 100644 (file)
@@ -1551,12 +1551,12 @@ v850_elf_print_private_bfd_data (abfd, ptr)
   switch (elf_elfheader (abfd)->e_flags & EF_V850_ARCH)
     {
     default:
-    case E_V850_ARCH: fprintf (file, ": v850 architecture");
+    case E_V850_ARCH: fprintf (file, ": v850 architecture"); break;
 /* start-sanitize-v850e */
-    case E_V850E_ARCH: fprintf (file, ": v850e architecture");
+    case E_V850E_ARCH: fprintf (file, ": v850e architecture"); break;
 /* end-sanitize-v850e */
 /* start-sanitize-v850eq */
-    case E_V850EQ_ARCH: fprintf (file, ": v850eq architecture");
+    case E_V850EQ_ARCH: fprintf (file, ": v850eq architecture"); break;
 /* end-sanitize-v850eq */
     }
   
This page took 0.046313 seconds and 4 git commands to generate.