[Bug gas/5141] 4th range checking mismatch in config/tc-cris.c

2007-10-07 Thread hp at bitrange dot com
--- Additional Comments From hp at bitrange dot com 2007-10-07 22:01 --- Subject: Re: New: 4th range checking mismatch in config/tc-cris.c On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: > #: config/tc-cris.c:3653 > #, c-format > msgid "Value not in 8 bit range: %l

[Bug gas/5139] Another bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread hp at bitrange dot com
--- Additional Comments From hp at bitrange dot com 2007-10-07 22:00 --- Subject: Re: New: Another bit range checking mismatch in config/tc-cris.c n Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: > #: config/tc-cris.c:2120 config/tc-cris.c:2171 > #, c-format > msgi

[Bug gas/5140] Third bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread hp at bitrange dot com
--- Additional Comments From hp at bitrange dot com 2007-10-07 22:00 --- Subject: Re: New: Third bit range checking mismatch in config/tc-cris.c On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: > #: config/tc-cris.c:3631 > #, c-format > msgid "Value not in 16 bit

[Bug gas/5138] Bit range mismatch in config/tc-cris.c

2007-10-07 Thread hp at bitrange dot com
--- Additional Comments From hp at bitrange dot com 2007-10-07 21:59 --- Subject: Re: New: Bit range mismatch in config/tc-cris.c On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: > The following error message is a bit limited: > > #: config/tc-cris.c:2110 config/tc-

Re: [Bug gas/5141] New: 4th range checking mismatch in config/tc-cris.c

2007-10-07 Thread Hans-Peter Nilsson
On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: #: config/tc-cris.c:3653 #, c-format msgid "Value not in 8 bit range: %ld" The error message above is not quite correct, because range 255...-128 is a bit greater than 8 bits. See PR 5140. __

Re: [Bug gas/5140] New: Third bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread Hans-Peter Nilsson
On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: #: config/tc-cris.c:3631 #, c-format msgid "Value not in 16 bit range: %ld" The error message above is not quite correct, because range 0x...-32768 is a bit greater than 16 bits. This is getting tedious, see PR 5139. _

Re: [Bug gas/5139] New: Another bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread Hans-Peter Nilsson
n Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: #: config/tc-cris.c:2120 config/tc-cris.c:2171 #, c-format msgid "Immediate value not in 16 bit range: %ld" The error message above is not quite correct, because range -32768...65535 is a bit greater than 16 bits. Same reply

Re: [Bug gas/5138] New: Bit range mismatch in config/tc-cris.c

2007-10-07 Thread Hans-Peter Nilsson
On Sun, 7 Oct 2007, karvjorm at users dot sourceforge dot net wrote: The following error message is a bit limited: #: config/tc-cris.c:2110 config/tc-cris.c:2150 #, c-format msgid "Immediate value not in 8 bit range: %ld" source code: if (instruction->imm_oprnd_size == SIZE_FIELD && (out_insn

[Bug gas/5143] New: Missing config/tc-frv.c msgids in gas-2.17.90.pot

2007-10-07 Thread karvjorm at users dot sourceforge dot net
The following messages are missing in gas-2.17.90.pot #: config/tc-frv.c:407 #, c-format msgid "Unknown cpu -mcpu=%s" #: config/tc-frv.c:646 #, c-format msgid "\nVliw Insn #%d, #insns: %d\n" #: config/tc-frv.c:651 #, c-format msgid "Label Value: %p\n" #: config/tc-frv.c:653 #, c-format msgid "%

[Bug gas/5142] New: Missing msgids and references from config/tc-dlx.c in gas-2.17.90.pot

2007-10-07 Thread karvjorm at users dot sourceforge dot net
The following msgids are not included in gas-2.17.90.pot. "Invalid operands" is a new msgid for gas-2.17.90.pot #: config/tc-i860.c:227 config/tc-mips.c:1761 config/tc-dlx.c:290 #, c-format msgid "internal error: can't hash `%s': %s\n" #: config/tc-dlx.c:892 msgid "Invalid operands" #: config/tc

[Bug gas/5141] New: 4th range checking mismatch in config/tc-cris.c

2007-10-07 Thread karvjorm at users dot sourceforge dot net
#: config/tc-cris.c:3653 #, c-format msgid "Value not in 8 bit range: %ld" The error message above is not quite correct, because range 255...-128 is a bit greater than 8 bits. case BFD_RELOC_8: case BFD_RELOC_8_PCREL: if (val > 255 || val < -128) as_bad_where (fixP->fx_file, fixP->fx_line,

[Bug gas/5140] New: Third bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread karvjorm at users dot sourceforge dot net
#: config/tc-cris.c:3631 #, c-format msgid "Value not in 16 bit range: %ld" The error message above is not quite correct, because range 0x...-32768 is a bit greater than 16 bits. The error message case BFD_RELOC_16: case BFD_RELOC_16_PCREL: if (val > 0x || val < -32768) as_bad_wher

[Bug gas/5139] New: Another bit range checking mismatch in config/tc-cris.c

2007-10-07 Thread karvjorm at users dot sourceforge dot net
#: config/tc-cris.c:2120 config/tc-cris.c:2171 #, c-format msgid "Immediate value not in 16 bit range: %ld" The error message above is not quite correct, because range -32768...65535 is a bit greater than 16 bits. if (instruction->imm_oprnd_size == SIZE_FIELD && (out_insnp->expr.X_add_number <

[Bug gas/5138] New: Bit range mismatch in config/tc-cris.c

2007-10-07 Thread karvjorm at users dot sourceforge dot net
The following error message is a bit limited: #: config/tc-cris.c:2110 config/tc-cris.c:2150 #, c-format msgid "Immediate value not in 8 bit range: %ld" source code: if (instruction->imm_oprnd_size == SIZE_FIELD && (out_insnp->expr.X_add_number < -128 || out_insnp->expr.X_add_number > 255)