diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2001-02-24 04:59:03 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2001-02-24 04:59:03 +0000 |
commit | 3737d05150f2c6632da15a91e0e61c218cac159f (patch) | |
tree | 04b04e0cb3dcb607b9da7c2ad1cd938a5ca97677 | |
parent | fb891446b7c6aa5432e84bbc67a7f9452afd057e (diff) | |
download | gdb-3737d05150f2c6632da15a91e0e61c218cac159f.zip gdb-3737d05150f2c6632da15a91e0e61c218cac159f.tar.gz gdb-3737d05150f2c6632da15a91e0e61c218cac159f.tar.bz2 |
2001-02-23 H.J. Lu <hjl@gnu.org>
* dwarf2dbg.c (dwarf2_directive_file): Call s_app_file (0) if
BFD_ASSEMBLER is not defined.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/dwarf2dbg.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 5ec3fd8..2c8b1e1 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-02-23 H.J. Lu <hjl@gnu.org> + + * dwarf2dbg.c (dwarf2_directive_file): Call s_app_file (0) if + BFD_ASSEMBLER is not defined. + 2001-02-23 Richard Sandiford <rsandifo@redhat.com> * config/tc-mn10300.c (md_apply_fix3): Don't mark a fixup as diff --git a/gas/dwarf2dbg.c b/gas/dwarf2dbg.c index 0068f7a..8d84e07 100644 --- a/gas/dwarf2dbg.c +++ b/gas/dwarf2dbg.c @@ -1284,7 +1284,7 @@ void dwarf2_directive_file (dummy) int dummy ATTRIBUTE_UNUSED; { - as_fatal (_("dwarf2 is not supported for this object file format")); + s_app_file (0); } void |