tgsi: Remove dead code.
authorMichal Krol <michal@vmware.com>
Thu, 25 Feb 2010 14:01:10 +0000 (15:01 +0100)
committerMichal Krol <michal@vmware.com>
Thu, 25 Feb 2010 14:01:10 +0000 (15:01 +0100)
src/gallium/auxiliary/tgsi/tgsi_exec.c

index 593c3cb..68566d3 100644 (file)
@@ -960,18 +960,6 @@ micro_pow(
 #endif
 }
 
-#if 0
-static void
-micro_sqrt( union tgsi_exec_channel *dst,
-            const union tgsi_exec_channel *src )
-{
-   dst->f[0] = sqrtf( src->f[0] );
-   dst->f[1] = sqrtf( src->f[1] );
-   dst->f[2] = sqrtf( src->f[2] );
-   dst->f[3] = sqrtf( src->f[3] );
-}
-#endif
-
 static void
 micro_sub(union tgsi_exec_channel *dst,
           const union tgsi_exec_channel *src0,