From: Roland Scheidegger Date: Mon, 8 Sep 2014 11:56:13 +0000 (+0200) Subject: gallivm: (trivial) don't try to use rcp when the division 1/x is integer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08f13ff43950a732cf3e7693565e4277feccf2e4;p=mesa.git gallivm: (trivial) don't try to use rcp when the division 1/x is integer This would just crash. Noticed by accident while checking int divisions by zero with a quickly hacked piglit test. Reviewed-by: Brian Paul Reviewed-by: Jose Fonseca --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit.c b/src/gallium/auxiliary/gallivm/lp_bld_arit.c index 8f3b5687752..f9c07998f28 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_arit.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_arit.c @@ -1073,7 +1073,7 @@ lp_build_div(struct lp_build_context *bld, if(a == bld->zero) return bld->zero; - if(a == bld->one) + if(a == bld->one && type.floating) return lp_build_rcp(bld, b); if(b == bld->zero) return bld->undef;