Mesa (master): gallivm: Silence unused variable warnings on release builds.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Mar 22 08:23:37 UTC 2015


Module: Mesa
Branch: master
Commit: 397b491173f0d2df4deb44d21c170bf16840d507
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=397b491173f0d2df4deb44d21c170bf16840d507

Author: Jose Fonseca <jfonseca at vmware.com>
Date:   Fri Mar 20 12:02:42 2015 +0000

gallivm: Silence unused variable warnings on release builds.

Reviewed-by: Brian Paul <brianp at vmware.com>

---

 src/gallium/auxiliary/gallivm/lp_bld_arit.c    |    2 ++
 src/gallium/auxiliary/gallivm/lp_bld_bitarit.c |    2 ++
 2 files changed, 4 insertions(+)

diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit.c b/src/gallium/auxiliary/gallivm/lp_bld_arit.c
index 956b37a..9daa93e 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_arit.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_arit.c
@@ -1831,6 +1831,8 @@ lp_build_round_altivec(struct lp_build_context *bld,
    assert(lp_check_value(type, a));
    assert(util_cpu_caps.has_altivec);
 
+   (void)type;
+
    switch (mode) {
    case LP_BUILD_ROUND_NEAREST:
       intrinsic = "llvm.ppc.altivec.vrfin";
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c b/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
index 9892d7a..f3fa5f4 100644
--- a/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
+++ b/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
@@ -182,6 +182,8 @@ lp_build_shl(struct lp_build_context *bld, LLVMValueRef a, LLVMValueRef b)
    assert(lp_check_value(type, a));
    assert(lp_check_value(type, b));
 
+   (void)type;
+
    res = LLVMBuildShl(builder, a, b, "");
 
    return res;




More information about the mesa-commit mailing list