From 527e76a7ec7f330bd321fe9632a0fadedbab1d41 Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Wed, 26 Nov 2008 17:20:07 +0100 Subject: tgsi: Fix build. --- src/gallium/auxiliary/tgsi/tgsi_sse2.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/gallium/auxiliary/tgsi') diff --git a/src/gallium/auxiliary/tgsi/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/tgsi_sse2.c index 31480c40da..68f5510351 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sse2.c @@ -855,12 +855,10 @@ rnd4f( static void emit_rnd( struct x86_function *func, - unsigned xmm_save, unsigned xmm_dst ) { emit_func_call_dst( func, - xmm_save, xmm_dst, rnd4f ); } @@ -937,12 +935,10 @@ sgn4f( static void emit_sgn( struct x86_function *func, - unsigned xmm_save, unsigned xmm_dst ) { emit_func_call_dst( func, - xmm_save, xmm_dst, sgn4f ); } @@ -1687,7 +1683,7 @@ emit_instruction( case TGSI_OPCODE_ROUND: FOR_EACH_DST0_ENABLED_CHANNEL( *inst, chan_index ) { FETCH( func, *inst, 0, 0, chan_index ); - emit_rnd( func, 0, 0 ); + emit_rnd( func, 0 ); STORE( func, *inst, 0, 0, chan_index ); } break; @@ -1957,7 +1953,7 @@ emit_instruction( /* TGSI_OPCODE_SGN */ FOR_EACH_DST0_ENABLED_CHANNEL( *inst, chan_index ) { FETCH( func, *inst, 0, 0, chan_index ); - emit_sgn( func, 0, 0 ); + emit_sgn( func, 0 ); STORE( func, *inst, 0, 0, chan_index ); } break; -- cgit v1.2.3