diff options
author | Jan Beulich <jbeulich@suse.com> | 2022-04-12 09:04:15 +0200 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2022-04-12 09:04:15 +0200 |
commit | c39e89c3aaa3a6790f85e80f2da5022bc4bce38b (patch) | |
tree | 075b73ce63b3483c6f6a0756479e1d45011040a0 /gas/macro.c | |
parent | 657edeab3857130ddc005a88104711dd9e339ff0 (diff) | |
download | binutils-c39e89c3aaa3a6790f85e80f2da5022bc4bce38b.zip binutils-c39e89c3aaa3a6790f85e80f2da5022bc4bce38b.tar.gz binutils-c39e89c3aaa3a6790f85e80f2da5022bc4bce38b.tar.bz2 |
gas: drop .appfile and .appline
These were used originally to represent "# <line> <file>" constructs
inserted by (typically) compilers when pre-processing. Quite some time
ago they were replaced by .linefile though. Since the original
directives were never documented, we ought to be able to remove support
for them. As a result in a number of case function parameter aren't used
anymore and can hence be dropped.
Diffstat (limited to 'gas/macro.c')
-rw-r--r-- | gas/macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/macro.c b/gas/macro.c index 871a2a8..c8ebcab 100644 --- a/gas/macro.c +++ b/gas/macro.c @@ -256,7 +256,7 @@ buffer_and_nest (const char *from, const char *to, sb *ptr, ptr->ptr[ptr->len] = '\0'; temp_ilp (ptr->ptr + i + 8); - s_app_line (0); + s_linefile (0); restore_ilp (); ptr->ptr[ptr->len] = saved_eol_char; ptr->len = line_start; |