summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2008-02-18 18:51:57 -0800
committerIan Romanick <idr@us.ibm.com>2008-02-19 08:41:04 -0800
commit4362c6e59d575a039e654e1520bbff89b73fc8f2 (patch)
treec2151cf8042bde93b697bb93dc149359369a2fce /src
parent5480a6bc13a555f99a89fc801cfe153182697dda (diff)
Cell: trivial clean-ups
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/cell/spu/spu_exec.c8
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;