diff options
author | Ian Romanick <idr@us.ibm.com> | 2008-02-18 18:51:57 -0800 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2008-02-19 08:41:04 -0800 |
commit | 4362c6e59d575a039e654e1520bbff89b73fc8f2 (patch) | |
tree | c2151cf8042bde93b697bb93dc149359369a2fce | |
parent | 5480a6bc13a555f99a89fc801cfe153182697dda (diff) |
Cell: trivial clean-ups
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_exec.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_exec.c b/src/gallium/drivers/cell/spu/spu_exec.c index 109540b1f7..0eb5ea1a3f 100644 --- a/src/gallium/drivers/cell/spu/spu_exec.c +++ b/src/gallium/drivers/cell/spu/spu_exec.c @@ -146,17 +146,13 @@ spu_exec_machine_init(struct spu_exec_machine *mach, struct spu_sampler *samplers, unsigned processor) { - qword zero; - qword not_zero; - uint i; + const qword zero = si_il(0); + const qword not_zero = si_il(~0); mach->Samplers = samplers; mach->Processor = processor; mach->Addrs = &mach->Temps[TGSI_EXEC_NUM_TEMPS]; - zero = si_xor(zero, zero); - not_zero = si_xori(zero, 0xff); - /* Setup constants. */ mach->Temps[TEMP_0_I].xyzw[TEMP_0_C].q = zero; mach->Temps[TEMP_FF_I].xyzw[TEMP_FF_C].q = not_zero; |