diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2016-04-09 13:19:00 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2016-04-09 13:19:00 +0100 |
commit | 1357373c1dbb3dc33952b0c74c80a0fff6d508ef (patch) | |
tree | ae900cedae78b75d286111ec0a0e70fee8324262 /gas/config | |
parent | 5f4678bb694d1fbb6080fd414c27dd8483a4dc68 (diff) | |
download | gdb-1357373c1dbb3dc33952b0c74c80a0fff6d508ef.zip gdb-1357373c1dbb3dc33952b0c74c80a0fff6d508ef.tar.gz gdb-1357373c1dbb3dc33952b0c74c80a0fff6d508ef.tar.bz2 |
MIPS/GAS: Unify messages in `mips_check_options'
gas/
* config/tc-mips.c (mips_check_options): Unify messages.
Diffstat (limited to 'gas/config')
-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 7d7c88a..f616f8e 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -3862,11 +3862,11 @@ mips_check_options (struct mips_set_options *opts, bfd_boolean abi_checks) as_bad (_("`nooddspreg` cannot be used with a 64-bit ABI")); if (opts->micromips == 1 && opts->mips16 == 1) - as_bad (_("`mips16' cannot be used with `micromips'")); + as_bad (_("`%s' cannot be used with `%s'"), "mips16", "micromips"); else if (ISA_IS_R6 (opts->isa) && (opts->micromips == 1 || opts->mips16 == 1)) - as_fatal (_("`%s' can not be used with `%s'"), + as_fatal (_("`%s' cannot be used with `%s'"), opts->micromips ? "micromips" : "mips16", mips_cpu_info_from_isa (opts->isa)->name); |