From e237d851a44c35b52e5799bb4c2da6d8eafe2285 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sat, 30 Jun 2001 10:09:40 +0000 Subject: [PATCH] Treat a .ln directive outside of a function as a .appline directive. --- gas/ChangeLog | 5 +++++ 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 + + * config/obj-coff.c (obj_coff_ln): Treat a .ln directive + outside of a function as a .appline directive. + 2001-06-28 Eric Christopher H.J. Lu 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 { -- 2.7.4