summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJonathan White <jwhite@tungstengraphics.com>2008-09-18 10:37:45 -0600
committerJonathan White <jwhite@tungstengraphics.com>2008-09-18 10:37:45 -0600
commit3d2449247afce18e6a0604b794778d1373c879be (patch)
treeac267ed0e3a87685be9744cdbd6bb933d5fbf293 /src
parentc868a1c32d70295f425333f9e8a35235b129704b (diff)
cell: Added SGE and SLE instructions to dispatch function
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/cell/ppu/cell_gen_fp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_gen_fp.c b/src/gallium/drivers/cell/ppu/cell_gen_fp.c
index 92681408e9..2607b410aa 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: