From: Michal Krol Date: Mon, 23 Nov 2009 10:29:29 +0000 (+0100) Subject: tgsi: Remove code that actually had no effect. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eacdd8fa75d83ed1e3e2d7c003cea857a310bffd;p=mesa.git tgsi: Remove code that actually had no effect. --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 0197db8883d..d52c94fcfa1 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -2275,11 +2275,7 @@ exec_instruction( case TGSI_OPCODE_EX2: FETCH(&r[0], 0, CHAN_X); -#if FAST_MATH micro_exp2( &r[0], &r[0] ); -#else - micro_pow( &r[0], &mach->Temps[TEMP_2_I].xyzw[TEMP_2_C], &r[0] ); -#endif FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) { STORE( &r[0], 0, chan_index );