cell: Added SGE and SLE instructions to dispatch function
authorJonathan White <jwhite@tungstengraphics.com>
Thu, 18 Sep 2008 16:37:45 +0000 (10:37 -0600)
committerJonathan White <jwhite@tungstengraphics.com>
Thu, 18 Sep 2008 16:37:45 +0000 (10:37 -0600)
src/gallium/drivers/cell/ppu/cell_gen_fp.c

index 92681408e9fcbb51181c84f3ee426a859cf0cf90..2607b410aa3b671d1084fdcaba350d393ab465e9 100644 (file)
@@ -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: