tgsi: Remove dead micro_umod().
authorMichal Krol <michal@vmware.com>
Sun, 3 Jan 2010 16:59:17 +0000 (17:59 +0100)
committerMichal Krol <michal@vmware.com>
Tue, 5 Jan 2010 08:28:32 +0000 (09:28 +0100)
src/gallium/auxiliary/tgsi/tgsi_exec.c

index a4c47b38f41d67ff45ea43b6cdac7480091cb040..bfdb34bf0c1acae4a080f4a50b5cc8c272c19900 100644 (file)
@@ -712,20 +712,6 @@ micro_min(
    dst->f[3] = src0->f[3] < src1->f[3] ? src0->f[3] : src1->f[3];
 }
 
-#if 0
-static void
-micro_umod(
-   union tgsi_exec_channel *dst,
-   const union tgsi_exec_channel *src0,
-   const union tgsi_exec_channel *src1 )
-{
-   dst->u[0] = src0->u[0] % src1->u[0];
-   dst->u[1] = src0->u[1] % src1->u[1];
-   dst->u[2] = src0->u[2] % src1->u[2];
-   dst->u[3] = src0->u[3] % src1->u[3];
-}
-#endif
-
 static void
 micro_mul(
    union tgsi_exec_channel *dst,