+2011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
+
+ * mips-tdep.c (mips32_next_pc): Fix floating point condition
+ code mask.
+
2011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
* mips-tdep.c (deal_with_atomic_sequence): Fix the handling
get_frame_register_signed (frame,
mips_regnum (get_frame_arch (frame))->
fp_control_status);
- int cond = ((fcrcs >> 24) & 0x0e) | ((fcrcs >> 23) & 0x01);
+ int cond = ((fcrcs >> 24) & 0xfe) | ((fcrcs >> 23) & 0x01);
if (((cond >> cnum) & 0x01) == tf)
pc += mips32_relative_offset (inst) + 4;