diff options
author | Jonathan White <[email protected]> | 2008-09-18 10:37:45 -0600 |
---|---|---|
committer | Jonathan White <[email protected]> | 2008-09-18 10:37:45 -0600 |
commit | 3d2449247afce18e6a0604b794778d1373c879be (patch) | |
tree | ac267ed0e3a87685be9744cdbd6bb933d5fbf293 | |
parent | c868a1c32d70295f425333f9e8a35235b129704b (diff) |
cell: Added SGE and SLE instructions to dispatch function
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_gen_fp.c | 4 |
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 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: |