diff options
author | Keith Whitwell <[email protected]> | 2008-04-18 18:30:41 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-18 18:32:37 +0100 |
commit | 363f7abf2000c1cf5993ae8f83ba81b2054bf6e0 (patch) | |
tree | c436b939fbf790ebfa465dba34a3dfa267bcd115 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | c5f0158a9179463593d63b33cf3b5490167faac9 (diff) |
rtasm: add x86_imul
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 dfde661f469..5e99ceea706 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -213,6 +213,7 @@ void x86_inc( struct x86_function *p, struct x86_reg reg ); void x86_lea( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void x86_mov( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void x86_mul( struct x86_function *p, struct x86_reg src ); +void x86_imul( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); 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 ); |