diff options
author | José Fonseca <[email protected]> | 2008-04-27 21:09:45 +0900 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-04-27 21:09:45 +0900 |
commit | e3c415995706d2dda7c34a227e2e24d0745763ec (patch) | |
tree | 92f4fb8768299bd8c50ccbc749af0322bae2de38 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | a8e39b6f5a1fedf2f8719e1adb8802ebbfc09688 (diff) |
rtasm: Implement x86_retw.
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.h')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h index 695a1cef4e3..1962b07bc5b 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -219,6 +219,7 @@ void x86_or( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void x86_pop( struct x86_function *p, struct x86_reg reg ); void x86_push( struct x86_function *p, struct x86_reg reg ); void x86_ret( struct x86_function *p ); +void x86_retw( struct x86_function *p, unsigned short imm ); void x86_sub( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void x86_test( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void x86_xor( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); |