diff options
author | M R Swami Reddy <MR.Swami.Reddy@nsc.com> | 2009-10-01 08:19:55 +0000 |
---|---|---|
committer | M R Swami Reddy <MR.Swami.Reddy@nsc.com> | 2009-10-01 08:19:55 +0000 |
commit | 4ded9dda7cac16de63928596e8c7e29984515089 (patch) | |
tree | aee4a3d34054ebedd49e61f1906bedd60bc1133c /opcodes/crx-dis.c | |
parent | d5e7ea07f51c7a016915f6ea261808bf3fbd430b (diff) | |
download | binutils-gdb-4ded9dda7cac16de63928596e8c7e29984515089.tar.gz |
2009-10-01 M R Swami Reddy <MR.Swami.Reddy@nsc.com>
* crx-dis.c (match_opcode): Truncate mcode to 32-bit.
Diffstat (limited to 'opcodes/crx-dis.c')
-rw-r--r-- | opcodes/crx-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/crx-dis.c b/opcodes/crx-dis.c index 6675720d7de..c7524572614 100644 --- a/opcodes/crx-dis.c +++ b/opcodes/crx-dis.c @@ -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]; |