aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-11-17 18:46:43 +0000
committerNick Clifton <nickc@redhat.com>2000-11-17 18:46:43 +0000
commit8179bd9b1ba5d30de8edbdfdac69a8bf5791b21d (patch)
tree6ae859c90706a35b852b06fcb5d343930314851f /gas/config
parent316e2c057847248a59e24b9e5ebf51211ef35033 (diff)
downloadgdb-8179bd9b1ba5d30de8edbdfdac69a8bf5791b21d.zip
gdb-8179bd9b1ba5d30de8edbdfdac69a8bf5791b21d.tar.gz
gdb-8179bd9b1ba5d30de8edbdfdac69a8bf5791b21d.tar.bz2
Add support for .line and .file pseudo ops.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-arm.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index eb22404..b6dd51d 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -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;
}
}