[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v4 2/9] target-ppc: Implement mtvsrdd instructio
From: |
Richard Henderson |
Subject: |
Re: [Qemu-devel] [PATCH v4 2/9] target-ppc: Implement mtvsrdd instruction |
Date: |
Wed, 28 Sep 2016 09:01:18 -0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 |
On 09/27/2016 10:31 PM, Nikunj A Dadhania wrote:
> + if (!rA(ctx->opcode)) {
> + tcg_gen_movi_i64(cpu_vsrh(xT(ctx->opcode)), 0);
> + } else {
> + tcg_gen_mov_i64(cpu_vsrh(xT(ctx->opcode)), cpu_gpr[rA(ctx->opcode)]);
> + }
Indentation. Otherwise,
Reviewed-by: Richard Henderson <address@hidden>
r~