tcg/ppc: Fix not_i32

Thanks to Alexander Graf for bug report and a good reproducible test
case.

Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
malc 2010-04-04 20:36:29 +04:00
parent 4a9590f32e
commit 36368cf0d5

View file

@ -1646,7 +1646,7 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
break;
case INDEX_op_not_i32:
tcg_out32 (s, NOR | SAB (args[1], args[0], args[0]));
tcg_out32 (s, NOR | SAB (args[1], args[0], args[1]));
break;
case INDEX_op_qemu_ld8u: