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/config/tc-mips.c | |
parent | 657edeab3857130ddc005a88104711dd9e339ff0 (diff) | |
download | gdb-c39e89c3aaa3a6790f85e80f2da5022bc4bce38b.zip gdb-c39e89c3aaa3a6790f85e80f2da5022bc4bce38b.tar.gz gdb-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/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index f632e94..ae7a443 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -19723,7 +19723,7 @@ s_mips_file (int x ATTRIBUTE_UNUSED) if (ECOFF_DEBUGGING) { get_number (); - s_app_file (0); + s_file (0); } else { @@ -19738,7 +19738,7 @@ s_mips_file (int x ATTRIBUTE_UNUSED) if (filename != NULL && ! first_file_directive) { (void) new_logical_line (filename, -1); - s_app_file_string (filename, 0); + s_file_string (filename); } first_file_directive = 1; } |