|
From: | Richard Henderson |
Subject: | Re: [Qemu-devel] [PATCH 54/57] target-i386: Implement ADX extension |
Date: | Tue, 19 Feb 2013 23:22:02 -0800 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2 |
On 2013-02-19 09:40, Richard Henderson wrote:
+ /* Otherwise compute the carry-out in two steps. */ + tcg_gen_add_tl(cpu_T[0], cpu_T[0], cpu_regs[reg]); + tcg_gen_setcond_tl(TCG_COND_LTU, cpu_tmp4, + cpu_T[0], cpu_regs[reg]); + tcg_gen_add_tl(cpu_regs[reg], cpu_T[0], carry_in); + tcg_gen_setcond_tl(TCG_COND_LTU, carry_out, + cpu_T[0], carry_in);
Typo in the carry_out computation here. Fixed for the next revision. r~
[Prev in Thread] | Current Thread | [Next in Thread] |