Fixed xgettext invocation in .Sanitize files
[binutils-gdb.git] / bfd / libaout.h
index 6731d6d27cca28e5bd60029ca1ded34335c217e4..a08af0a11fa5f06b3ee08c988fd0b28c15b914c8 100644 (file)
@@ -192,14 +192,14 @@ struct internal_exec
 };
 
 /* Magic number is written 
-< MSB        >
+< MSB          >
 3130292827262524232221201918171615141312111009080706050403020100
-< FLAGS      >< MACHINE TYPE ><  MAGIC NUMBER                 >
+< FLAGS        >< MACHINE TYPE ><  MAGIC NUMBER                >
 */
 /* Magic number for NetBSD is
-<MSB         >
+<MSB           >
 3130292827262524232221201918171615141312111009080706050403020100
-< FLAGS    ><                  ><  MAGIC NUMBER                >
+< FLAGS    >< MACHINE TYPE     ><  MAGIC NUMBER                >
 */
 
 enum machine_type {
@@ -216,6 +216,7 @@ enum machine_type {
   M_29K = 101,          /* AMD 29000 */
   M_386_DYNIX = 102,   /* Sequent running dynix */
   M_ARM = 103,         /* Advanced Risc Machines ARM */
+  M_SPARCLET = 131,    /* SPARClet = M_SPARC + 128 */
   M_386_NETBSD = 134,  /* NetBSD/i386 binary */
   M_68K_NETBSD = 135,  /* NetBSD/m68k binary */
   M_68K4K_NETBSD = 136,        /* NetBSD/m68k4k binary */
@@ -223,9 +224,6 @@ enum machine_type {
   M_SPARC_NETBSD = 138,        /* NetBSD/sparc binary */
   M_MIPS1 = 151,        /* MIPS R2000/R3000 binary */
   M_MIPS2 = 152,        /* MIPS R4000/R6000 binary */
-/* start-sanitize-rce */
-  M_RCE = 155,         /* Motorola RCE binary */
-/* end-sanitize-rce */
   M_HP200 = 200,       /* HP 200 (68010) BSD binary */
   M_HP300 = (300 % 256), /* HP 300 (68020+68881) BSD binary */
   M_HPUX = (0x20c % 256)/* HP 200/300 HPUX binary */
@@ -585,26 +583,22 @@ NAME(aout,bfd_free_cached_info) PARAMS ((bfd *));
                                                                              \
        if (bfd_get_outsymbols (abfd) != (asymbol **) NULL                    \
            && bfd_get_symcount (abfd) != 0)                                  \
-           {                                                                 \
-             if (bfd_seek (abfd, (file_ptr)(N_SYMOFF(*execp)), SEEK_SET)     \
-                 != 0)                                                       \
-               return false;                                                 \
+         {                                                                   \
+           if (bfd_seek (abfd, (file_ptr)(N_SYMOFF(*execp)), SEEK_SET) != 0) \
+             return false;                                                   \
                                                                              \
-             if (! NAME(aout,write_syms)(abfd)) return false;                \
+           if (! NAME(aout,write_syms)(abfd)) return false;                  \
+         }                                                                   \
                                                                              \
-             if (bfd_seek (abfd, (file_ptr)(N_TRELOFF(*execp)), SEEK_SET)    \
-                 != 0)                                                       \
-               return false;                                                 \
+       if (bfd_seek (abfd, (file_ptr)(N_TRELOFF(*execp)), SEEK_SET) != 0)    \
+         return false;                                                       \
+       if (!NAME(aout,squirt_out_relocs) (abfd, obj_textsec (abfd)))         \
+         return false;                                                       \
                                                                              \
-             if (!NAME(aout,squirt_out_relocs) (abfd, obj_textsec (abfd)))   \
-               return false;                                                 \
-             if (bfd_seek (abfd, (file_ptr)(N_DRELOFF(*execp)), SEEK_SET)    \
-                 != 0)                                                       \
-               return false;                                                 \
-                                                                             \
-             if (!NAME(aout,squirt_out_relocs)(abfd, obj_datasec (abfd)))    \
-               return false;                                                 \
-           }                                                                 \
+       if (bfd_seek (abfd, (file_ptr)(N_DRELOFF(*execp)), SEEK_SET) != 0)    \
+         return false;                                                       \
+       if (!NAME(aout,squirt_out_relocs)(abfd, obj_datasec (abfd)))          \
+         return false;                                                       \
       }                                                                              
 #endif