diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-20 10:09:12 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-20 10:09:12 -0600 |
commit | 832e73bc098fa8fd680d70cb495f495b33769630 (patch) | |
tree | 782a5517b4c7181a2ca76601f7de472375695045 /src/mesa | |
parent | c492725abfab8df545a5adea3cd124cba3ba5c4c (diff) |
added case for TGSI_OPCODE_END
Diffstat (limited to 'src/mesa')
-rwxr-xr-x | src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c index d0d5719c93..77ba7bb944 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 ); } |