From: Jonathan White Date: Thu, 18 Sep 2008 16:37:45 +0000 (-0600) Subject: cell: Added SGE and SLE instructions to dispatch function X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d2449247afce18e6a0604b794778d1373c879be;p=mesa.git cell: Added SGE and SLE instructions to dispatch function --- diff --git a/src/gallium/drivers/cell/ppu/cell_gen_fp.c b/src/gallium/drivers/cell/ppu/cell_gen_fp.c index 92681408e9f..2607b410aa3 100644 --- a/src/gallium/drivers/cell/ppu/cell_gen_fp.c +++ b/src/gallium/drivers/cell/ppu/cell_gen_fp.c @@ -1020,6 +1020,10 @@ emit_instruction(struct codegen *gen, return emit_SGT(gen, inst); case TGSI_OPCODE_SLT: return emit_SLT(gen, inst); + case TGSI_OPCODE_SGE: + return emit_SGE(gen, inst); + case TGSI_OPCODE_SLE: + return emit_SLE(gen, inst); case TGSI_OPCODE_SEQ: return emit_SEQ(gen, inst); case TGSI_OPCODE_SNE: