powerpc-lynxos and powerpc-windiss fixes
[deliverable/binutils-gdb.git] / bfd / ieee.c
index c7b27d877d8deba04f48deb256ef42fb5e488d1d..aa10aa2752d11c313954032a68eeb17acd210caa 100644 (file)
@@ -156,7 +156,7 @@ ieee_write_id (bfd *abfd, const char *id)
     {
       _bfd_error_handler
        /* xgettext:c-format */
-       (_("%B: string too long (%ld chars, max 65535)"), abfd, (long) length);
+       (_("%pB: string too long (%ld chars, max 65535)"), abfd, (long) length);
       bfd_set_error (bfd_error_invalid_operation);
       return FALSE;
     }
@@ -299,7 +299,7 @@ ieee_write_expression (bfd *abfd,
            {
              _bfd_error_handler
                /* xgettext:c-format */
-               (_("%B: unrecognized symbol `%s' flags 0x%x"),
+               (_("%pB: unrecognized symbol `%s' flags 0x%x"),
                 abfd, bfd_asymbol_name (symbol), symbol->flags);
              bfd_set_error (bfd_error_invalid_operation);
              return FALSE;
@@ -834,7 +834,7 @@ ieee_slurp_external_symbols (bfd *abfd)
                  default:
                    _bfd_error_handler
                      /* xgettext:c-format */
-                     (_("%B: unimplemented ATI record %u for symbol %u"),
+                     (_("%pB: unimplemented ATI record %u for symbol %u"),
                       abfd, symbol_attribute_def, symbol_name_index);
                    bfd_set_error (bfd_error_bad_value);
                    return FALSE;
@@ -859,8 +859,8 @@ ieee_slurp_external_symbols (bfd *abfd)
                  {
                    _bfd_error_handler
                      /* xgettext:c-format */
-                     (_("%B: unexpected ATN type %Ld in external part"),
-                        abfd, value);
+                     (_("%pB: unexpected ATN type %" PRId64 " in external part"),
+                        abfd, (int64_t) value);
                    bfd_set_error (bfd_error_bad_value);
                    return FALSE;
                  }
@@ -881,7 +881,7 @@ ieee_slurp_external_symbols (bfd *abfd)
 
                      default:
                        _bfd_error_handler
-                         (_("%B: unexpected type after ATN"), abfd);
+                         (_("%pB: unexpected type after ATN"), abfd);
                        bfd_set_error (bfd_error_bad_value);
                        return FALSE;
                      }
@@ -3567,34 +3567,6 @@ ieee_write_processor (bfd *abfd)
        return FALSE;
       break;
 
-    case bfd_arch_i960:
-      switch (arch->mach)
-       {
-       default:
-       case bfd_mach_i960_core:
-       case bfd_mach_i960_ka_sa:
-         if (! ieee_write_id (abfd, "80960KA"))
-           return FALSE;
-         break;
-
-       case bfd_mach_i960_kb_sb:
-         if (! ieee_write_id (abfd, "80960KB"))
-           return FALSE;
-         break;
-
-       case bfd_mach_i960_ca:
-         if (! ieee_write_id (abfd, "80960CA"))
-           return FALSE;
-         break;
-
-       case bfd_mach_i960_mc:
-       case bfd_mach_i960_xa:
-         if (! ieee_write_id (abfd, "80960MC"))
-           return FALSE;
-         break;
-       }
-      break;
-
     case bfd_arch_m68k:
       {
        const char *id;
This page took 0.024919 seconds and 4 git commands to generate.