diff options
author | Michal Krol <[email protected]> | 2008-08-19 00:42:30 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-08-19 00:44:18 +0200 |
commit | de3083be7197cccb8dbf223d644ebdb78a8c809d (patch) | |
tree | 9a032a06eb4faea9a7ccf1455ed26f5f06eeff9d /src/gallium/auxiliary/tgsi/tgsi_exec.c | |
parent | 5d0a079fd00e5c9f1e9c96dd7bd17ecee57c52ce (diff) |
tgsi: Fix ARL opcode in SSE2 codegen.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index a2235de059b..b793e1ebaec 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1688,9 +1688,9 @@ exec_instruction( switch (inst->Instruction.Opcode) { case TGSI_OPCODE_ARL: FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) { - FETCH( &r[0], 0, chan_index ); - micro_f2it( &r[0], &r[0] ); - STORE( &r[0], 0, chan_index ); + FETCH( &r[0], 0, chan_index ); + micro_f2it( &r[0], &r[0] ); + STORE( &r[0], 0, chan_index ); } break; |