diff --git a/src/cpu/core_full/op.h b/src/cpu/core_full/op.h index 58458806..2af8b420 100644 --- a/src/cpu/core_full/op.h +++ b/src/cpu/core_full/op.h @@ -586,6 +586,7 @@ switch (inst.code.op) { FillFlags(); SETFLAGBIT(CF,(inst.op1.d & (1 << (inst.op2.d & 31)))); inst.op1.d&=~(1 << (inst.op2.d & 31)); + break; case O_BSWAP: BSWAP(inst.op1.d); break;