aboutsummaryrefslogtreecommitdiff
path: root/opcodes/m32c-ibld.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2006-01-03 22:06:18 +0000
committerDJ Delorie <dj@redhat.com>2006-01-03 22:06:18 +0000
commit54d46aca3532c1d74c3bbeb6ec2a389761f9663c (patch)
treec8b0f63d1fe075afbac435282a90a368271b915e /opcodes/m32c-ibld.c
parentaab87437e37aed0bfdd76dd5d4a788ebd20a728d (diff)
downloadfsf-binutils-gdb-54d46aca3532c1d74c3bbeb6ec2a389761f9663c.zip
fsf-binutils-gdb-54d46aca3532c1d74c3bbeb6ec2a389761f9663c.tar.gz
fsf-binutils-gdb-54d46aca3532c1d74c3bbeb6ec2a389761f9663c.tar.bz2
* cgen-ibld.in (extract_normal): Avoid memory range errors.
* m32c-ibld.c: Regenerated.
Diffstat (limited to 'opcodes/m32c-ibld.c')
-rw-r--r--opcodes/m32c-ibld.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/opcodes/m32c-ibld.c b/opcodes/m32c-ibld.c
index 16f0048..62c753b 100644
--- a/opcodes/m32c-ibld.c
+++ b/opcodes/m32c-ibld.c
@@ -3,7 +3,7 @@
THIS FILE IS MACHINE GENERATED WITH CGEN: Cpu tools GENerator.
- the resultant file is machine generated, cgen-ibld.in isn't
- Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2005
+ Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2005, 2006
Free Software Foundation, Inc.
This file is part of the GNU Binutils and GDB, the GNU debugger.
@@ -440,9 +440,8 @@ extract_normal (CGEN_CPU_DESC cd,
word_length may be too big. */
if (cd->min_insn_bitsize < cd->base_insn_bitsize)
{
- if (word_offset == 0
- && word_length > total_length)
- word_length = total_length;
+ if (word_offset + word_length > total_length)
+ word_length = total_length - word_offset;
}
/* Does the value reside in INSN_VALUE, and at the right alignment? */