OSDN Git Service

Add support for .line and .file pseudo ops.
authornickc <nickc>
Fri, 17 Nov 2000 18:46:42 +0000 (18:46 +0000)
committernickc <nickc>
Fri, 17 Nov 2000 18:46:42 +0000 (18:46 +0000)
gas/ChangeLog
gas/config/tc-arm.c

index ce145ee..f82b01f 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-17  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-arm.c (md_pseudo_table): Add support for .line and
+       .file pseudo ops.
+
 2000-11-17  Richard Henderson  <rth@redhat.com>
 
        * config/tc-i386.c (md_pseudo_table): Add .file and .loc.
index eb22404..b6dd51d 100644 (file)
@@ -1120,6 +1120,8 @@ CONST pseudo_typeS md_pseudo_table[] =
   { "sect.s",      arm_s_section, 0 },
   { "word",        s_arm_elf_cons, 4 },
   { "long",        s_arm_elf_cons, 4 },
+  { "file",        dwarf2_directive_file, 0 },
+  { "loc",         dwarf2_directive_loc,  0 },
 #else
   { "word",        cons, 4},
 #endif
@@ -6299,8 +6301,8 @@ tc_gen_reloc (section, fixp)
          default:                         type = _("<unknown>"); break;
          }
        as_bad_where (fixp->fx_file, fixp->fx_line,
-                     _("Can not represent %s relocation in this object file format (%d)"),
-                     type, fixp->fx_pcrel);
+                     _("Cannot represent %s relocation in this object file format"),
+                     type);
        return NULL;
       }
     }