From 832e73bc098fa8fd680d70cb495f495b33769630 Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 20 Oct 2007 10:09:12 -0600 Subject: [PATCH] added case for TGSI_OPCODE_END --- src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c index d0d5719c93d..77ba7bb944e 100755 --- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c +++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c @@ -1747,6 +1747,10 @@ emit_instruction( assert( 0 ); break; + case TGSI_OPCODE_END: + /* nothing */ + break; + default: assert( 0 ); } -- 2.30.2