diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-02-07 19:44:42 +0000 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-02-07 19:45:24 +0000 |
commit | 909c703bfbf7404414befaa0a94b76d78ba3cb4c (patch) | |
tree | 0d01e5427636de8a7f864304898b8696470d2dcf /src/mesa/x86 | |
parent | 28ecb986d958d52c9a996453e53418d1f98d7f75 (diff) | |
download | external_mesa3d-909c703bfbf7404414befaa0a94b76d78ba3cb4c.zip external_mesa3d-909c703bfbf7404414befaa0a94b76d78ba3cb4c.tar.gz external_mesa3d-909c703bfbf7404414befaa0a94b76d78ba3cb4c.tar.bz2 |
tgsi: Fall back to interpreter instead of assert(0) on unimplemented SSE code.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/rtasm/x86sse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/x86/rtasm/x86sse.c b/src/mesa/x86/rtasm/x86sse.c index 56c211e..f8da6e4 100644 --- a/src/mesa/x86/rtasm/x86sse.c +++ b/src/mesa/x86/rtasm/x86sse.c @@ -1137,6 +1137,7 @@ void x86_init_func_size( struct x86_function *p, unsigned code_size ) void x86_release_func( struct x86_function *p ) { _mesa_exec_free(p->store); + p->store = NULL; } |