On 10/25/2016 07:50 AM, Laurent Vivier wrote:
> + case 8: /* VC (!V) */
> + case 9: /* VS (V) */
> + /* Logic operations clear V and C. */
> + if (op == CC_OP_LOGIC) {
> + tcond = TCG_COND_NEVER;
> + c->v2 = c->v1;
> + }
This should be
c->v1 = c->v2;
goto done;
as with the F case above. Probably my error...
r~
