Switch the inferior too in switch_to_program_space_and_thread
[deliverable/binutils-gdb.git] / opcodes / crx-dis.c
index 18b6c6d9e670714330649c1172fa0e12ab17f952..011cd682fc262782a0cdddef3804dff9331fab34 100644 (file)
@@ -337,7 +337,7 @@ match_opcode (void)
   unsigned int mask;
 
   /* The instruction 'constant' opcode doewsn't exceed 32 bits.  */
-  unsigned int doubleWord = (words[1] + (words[0] << 16)) & 0xffffffff;
+  unsigned int doubleWord = words[1] + ((unsigned) words[0] << 16);
 
   /* Start searching from end of instruction table.  */
   instruction = &crx_instruction[NUMOPCODES - 2];
This page took 0.023492 seconds and 4 git commands to generate.