diff options
author | Brian <[email protected]> | 2007-10-20 10:09:12 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-20 10:09:12 -0600 |
commit | 832e73bc098fa8fd680d70cb495f495b33769630 (patch) | |
tree | 782a5517b4c7181a2ca76601f7de472375695045 | |
parent | c492725abfab8df545a5adea3cd124cba3ba5c4c (diff) |
added case for TGSI_OPCODE_END
-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 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 ); } |