diff options
Diffstat (limited to 'gas')
-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 |