summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-26 13:02:40 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-26 13:10:37 -0600
commit78c1f8b2decf168d183c52e7b414adb29dd18988 (patch)
tree96e8e6e5ee7a9c66edd40175823f7a22bc7adfe8 /src
parentf92083c338069c5c22d200e4696d8cd908258492 (diff)
convert OPCODE_END -> TGSI_OPCODE_RET
Diffstat (limited to 'src')
-rw-r--r--src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c
index 4fac61777c..6ce7ab9b71 100644
--- a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c
+++ b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c
@@ -466,7 +466,7 @@ compile_instruction(
fulldst->DstRegister.WriteMask &= TGSI_WRITEMASK_XYZ;
break;
case OPCODE_END:
- fullinst->Instruction.Opcode = TGSI_OPCODE_END;
+ fullinst->Instruction.Opcode = TGSI_OPCODE_RET;
break;
default:
assert( 0 );