Mesa (gallium-integer-opcodes): tgsi: Remove dead micro_umod().

Michał Król michal at kemper.freedesktop.org
Sun Jan 3 19:45:09 UTC 2010


Module: Mesa
Branch: gallium-integer-opcodes
Commit: 12ae8e0809d4c367cd9d1b5949f68f49c88e9ad4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=12ae8e0809d4c367cd9d1b5949f68f49c88e9ad4

Author: Michal Krol <michal at vmware.com>
Date:   Sun Jan  3 17:59:17 2010 +0100

tgsi: Remove dead micro_umod().

---

 src/gallium/auxiliary/tgsi/tgsi_exec.c |   14 --------------
 1 files changed, 0 insertions(+), 14 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index 4daa490..ffae590 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -703,20 +703,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,




More information about the mesa-commit mailing list