cell: fix compilation on cell
authorMarc Dietrich <marvin24@gmx.de>
Sun, 18 Oct 2009 15:28:34 +0000 (08:28 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 20 Oct 2009 17:17:12 +0000 (11:17 -0600)
s/LERP/LRP/

src/gallium/drivers/cell/ppu/cell_gen_fp.c

index 312621fd5340fa41d7a41113bc62c5842e751068..b6b2f885af5fa81a2d341ba690a2fb31697af3e0 100644 (file)
@@ -674,7 +674,7 @@ emit_MAD(struct codegen *gen, const struct tgsi_full_instruction *inst)
  * Emit linear interpolate.  See emit_ADD for comments.
  */
 static boolean
-emit_LERP(struct codegen *gen, const struct tgsi_full_instruction *inst)
+emit_LRP(struct codegen *gen, const struct tgsi_full_instruction *inst)
 {
    int ch, s1_reg[4], s2_reg[4], s3_reg[4], d_reg[4], tmp_reg[4];
 
@@ -1766,7 +1766,7 @@ emit_instruction(struct codegen *gen,
       return emit_binop(gen, inst);
    case TGSI_OPCODE_MAD:
       return emit_MAD(gen, inst);
-   case TGSI_OPCODE_LERP:
+   case TGSI_OPCODE_LRP:
       return emit_LRP(gen, inst);
    case TGSI_OPCODE_DP3:
       return emit_DP3(gen, inst);