diff options
author | Michal Krol <[email protected]> | 2009-12-30 14:20:29 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-30 14:20:29 +0100 |
commit | 0f185cb027b12356895e424506846fa449e7c47f (patch) | |
tree | 19b3bf0271799a1be159b731180a4497f60ffd64 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | 7ca0ce38340144794267609646048b3820d594ab (diff) |
rtasm: Add x86_div().
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 731a6517968..f7612d416a0 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -244,6 +244,7 @@ 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 ); void x86_sahf( struct x86_function *p ); +void x86_div( struct x86_function *p, struct x86_reg src ); void x86_cdecl_caller_push_regs( struct x86_function *p ); |