diff options
author | Brian <[email protected]> | 2008-03-19 09:52:08 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-03-19 09:52:08 -0600 |
commit | b5292b4d9967f3a3a35cd7f1909b46fab9179111 (patch) | |
tree | 7ff8c7dcfe9d4bc8b8804b51030033f5150eaaad /src/mesa/x86/rtasm/x86sse.h | |
parent | 29054676a094c59b70cfec8b05da11741e53722c (diff) |
x86_init_func_size() returns int to indicate success/fail (bug 15119)
Diffstat (limited to 'src/mesa/x86/rtasm/x86sse.h')
-rw-r--r-- | src/mesa/x86/rtasm/x86sse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/x86/rtasm/x86sse.h b/src/mesa/x86/rtasm/x86sse.h index c2aa416492e..f6282f5bd41 100644 --- a/src/mesa/x86/rtasm/x86sse.h +++ b/src/mesa/x86/rtasm/x86sse.h @@ -80,7 +80,7 @@ enum sse_cc { void x86_init_func( struct x86_function *p ); -void x86_init_func_size( struct x86_function *p, unsigned code_size ); +int x86_init_func_size( struct x86_function *p, unsigned code_size ); void x86_release_func( struct x86_function *p ); void (*x86_get_func( struct x86_function *p ))( void ); |