From: Brian Paul Date: Fri, 10 Oct 2008 18:04:19 +0000 (-0600) Subject: cell: fix fm/fs copy & paste bug from a few commits ago X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a45d293fd9a1432404a7e26f97cb20b2a0c43654;p=mesa.git cell: fix fm/fs copy & paste bug from a few commits ago --- diff --git a/src/gallium/drivers/cell/ppu/cell_gen_fp.c b/src/gallium/drivers/cell/ppu/cell_gen_fp.c index 7a4e8d20ba2..ab71336754c 100644 --- a/src/gallium/drivers/cell/ppu/cell_gen_fp.c +++ b/src/gallium/drivers/cell/ppu/cell_gen_fp.c @@ -474,7 +474,7 @@ emit_SUB(struct codegen *gen, const struct tgsi_full_instruction *inst) for (ch = 0; ch < 4; ch++) { if (inst->FullDstRegisters[0].DstRegister.WriteMask & (1 << ch)) { /* d = s1 - s2 */ - spe_fm(gen->f, d_reg[ch], s1_reg[ch], s2_reg[ch]); + spe_fs(gen->f, d_reg[ch], s1_reg[ch], s2_reg[ch]); store_dest_reg(gen, d_reg[ch], ch, &inst->FullDstRegisters[0]); free_itemps(gen); }