mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 21:03:55 +08:00
2009-10-01 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
* crx-dis.c (match_opcode): Truncate mcode to 32-bit.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2009-10-01 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
|
||||
|
||||
* crx-dis.c (match_opcode): Truncate mcode to 32-bit.
|
||||
|
||||
2009-09-29 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* Makefile.am: Add RX files.
|
||||
|
@ -355,7 +355,7 @@ match_opcode (void)
|
||||
unsigned long mask;
|
||||
|
||||
/* The instruction 'constant' opcode doewsn't exceed 32 bits. */
|
||||
unsigned long doubleWord = words[1] + (words[0] << 16);
|
||||
unsigned long doubleWord = (words[1] + (words[0] << 16)) & 0xffffffff;
|
||||
|
||||
/* Start searching from end of instruction table. */
|
||||
instruction = &crx_instruction[NUMOPCODES - 2];
|
||||
|
Reference in New Issue
Block a user