1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-30 16:11:18 +02:00

add kernel branch emulation fix from #1345

SVN-Revision: 6289
This commit is contained in:
Felix Fietkau 2007-02-12 22:18:17 +00:00
parent 23afac1288
commit ba20f21c7e

@ -0,0 +1,11 @@
--- linux.old/arch/mips/kernel/branch.c 2006-12-23 21:34:20.000000000 +0100
+++ linux.dev/arch/mips/kernel/branch.c 2007-01-24 18:05:34.000000000 +0100
@@ -170,7 +170,7 @@
bit = (insn.i_format.rt >> 2);
bit += (bit != 0);
bit += 23;
- switch (insn.i_format.rt) {
+ switch (insn.i_format.rt & 3) {
case 0: /* bc1f */
case 2: /* bc1fl */
if (~fcr31 & (1 << bit))