diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2005-04-19 14:44:15 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2005-04-19 14:44:15 +0000 |
commit | 80b8152b3c463c43c02eb1dfe691824120225f0d (patch) | |
tree | 1816fda3e1d3eaa86d27298f2caed220e1eb8c45 /gas/config/tc-ia64.c | |
parent | 4d56c0a0b1e1e876d72b6690e52bfa0c3a0a48c7 (diff) | |
download | gdb-80b8152b3c463c43c02eb1dfe691824120225f0d.zip gdb-80b8152b3c463c43c02eb1dfe691824120225f0d.tar.gz gdb-80b8152b3c463c43c02eb1dfe691824120225f0d.tar.bz2 |
* config/tc-ia64.c (md_assemble): Fix error message for wrong
access to application registers.
testsuite/:
* gas/ia64/invalid-ar.l: Adapt to changed error message.
Diffstat (limited to 'gas/config/tc-ia64.c')
-rw-r--r-- | gas/config/tc-ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 484b25c..dcbca04 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -10692,7 +10692,7 @@ md_assemble (str) else if (ar_is_only_in_memory_unit (CURR_SLOT.opnd[rop].X_add_number)) unit = 'm'; if (unit != 'a' && unit != idesc->name [4]) - as_bad ("AR %d cannot be accessed by %c-unit", + as_bad ("AR %d can only be accessed by %c-unit", (int) (CURR_SLOT.opnd[rop].X_add_number - REG_AR), TOUPPER (unit)); } |