diff options
author | Nick Clifton <nickc@redhat.com> | 2001-06-30 10:09:40 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-06-30 10:09:40 +0000 |
commit | e237d851a44c35b52e5799bb4c2da6d8eafe2285 (patch) | |
tree | 529d3e400d6ac22e6855211255ba54669eaffb24 /gas | |
parent | 100bf2520073ba27db995e1199a35663b6b8a95f (diff) | |
download | gdb-e237d851a44c35b52e5799bb4c2da6d8eafe2285.zip gdb-e237d851a44c35b52e5799bb4c2da6d8eafe2285.tar.gz gdb-e237d851a44c35b52e5799bb4c2da6d8eafe2285.tar.bz2 |
Treat a .ln directive outside of a function as a .appline directive.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/obj-coff.c | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f748494..71a50c7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-06-28 Nick Clifton <nickc@cambridge.redhat.com> + + * config/obj-coff.c (obj_coff_ln): Treat a .ln directive + outside of a function as a .appline directive. + 2001-06-28 Eric Christopher <echristo@redhat.com> H.J. Lu <hjl@gnu.org> diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 8de8c62..30a5fe8 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -493,13 +493,13 @@ obj_coff_ln (appline) } l = get_absolute_expression (); - if (!appline) - { - add_lineno (frag_now, frag_now_fix (), l); - } - if (appline) + /* If there is no lineno symbol, treat a .ln + directive as if it were a .appline directive. */ + if (appline || current_lineno_sym == NULL) new_logical_line ((char *) NULL, l - 1); + else + add_lineno (frag_now, frag_now_fix (), l); #ifndef NO_LISTING { |