aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2023-02-16 09:56:50 +0100
committerJan Beulich <jbeulich@suse.com>2023-02-16 09:56:50 +0100
commitc84b3d7eaa3aec024ff2482e3a1fea0e89d01839 (patch)
tree41488a37363a1470178419021ea3c7cea2b7ec95 /gas/config
parent42af03dafee14cf7b3f4e324ceca1b0ababd1eb9 (diff)
downloadgdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.zip
gdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.tar.gz
gdb-c84b3d7eaa3aec024ff2482e3a1fea0e89d01839.tar.bz2
RISC-V: as_warn() already emits a newline
Therefore there shouldn't be any at the end of the format string.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-riscv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-riscv.c b/gas/config/tc-riscv.c
index 08b806d..40550ba 100644
--- a/gas/config/tc-riscv.c
+++ b/gas/config/tc-riscv.c
@@ -4179,7 +4179,7 @@ s_riscv_option (int x ATTRIBUTE_UNUSED)
}
else
{
- as_warn (_("unrecognized .option directive: %s\n"), name);
+ as_warn (_("unrecognized .option directive: %s"), name);
}
*input_line_pointer = ch;
demand_empty_rest_of_line ();