aboutsummaryrefslogtreecommitdiff
path: root/opcodes/cgen-ibld.in
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2006-03-05 08:38:53 +0000
committerNick Clifton <nickc@redhat.com>2006-03-05 08:38:53 +0000
commited963e2de8fb9d28b2540e2bc23ad19b3670ebea (patch)
tree6aecf5a6023f9cbe35a0ba771724965aea3640dc /opcodes/cgen-ibld.in
parent3c568553f111f6a986a5a9fbd882fcd09ae4656a (diff)
downloadfsf-binutils-gdb-ed963e2de8fb9d28b2540e2bc23ad19b3670ebea.zip
fsf-binutils-gdb-ed963e2de8fb9d28b2540e2bc23ad19b3670ebea.tar.gz
fsf-binutils-gdb-ed963e2de8fb9d28b2540e2bc23ad19b3670ebea.tar.bz2
* cgen-ibld.in (insert_normal): Cope with attempts to insert a signed 32-bit
value into an unsigned 32-bit field when the host is a 64-bit machine.
Diffstat (limited to 'opcodes/cgen-ibld.in')
-rw-r--r--opcodes/cgen-ibld.in16
1 files changed, 12 insertions, 4 deletions
diff --git a/opcodes/cgen-ibld.in b/opcodes/cgen-ibld.in
index 77deeed..626e655 100644
--- a/opcodes/cgen-ibld.in
+++ b/opcodes/cgen-ibld.in
@@ -168,13 +168,21 @@ insert_normal (CGEN_CPU_DESC cd,
else if (! CGEN_BOOL_ATTR (attrs, CGEN_IFLD_SIGNED))
{
unsigned long maxval = mask;
-
- if ((unsigned long) value > maxval)
+ unsigned long val = (unsigned long) value;
+
+ /* For hosts with a word size > 32 check to see if value has been sign
+ extended beyond 32 bits. If so then ignore these higher sign bits
+ as the user is attempting to store a 32-bit signed value into an
+ unsigned 32-bit field which is allowed. */
+ if (sizeof (unsigned long) > 4 && ((value >> 32) == -1))
+ val &= 0xFFFFFFFF;
+
+ if (val > maxval)
{
/* xgettext:c-format */
sprintf (errbuf,
- _("operand out of range (%lu not between 0 and %lu)"),
- value, maxval);
+ _("operand out of range (0x%lx not between 0 and 0x%lx)"),
+ val, maxval);
return errbuf;
}
}