From: Dave Airlie Date: Tue, 28 Feb 2012 11:23:04 +0000 (+0000) Subject: gallivm: only do rcp/mul for floating X-Git-Tag: mesa-9.0~2989 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a76609681648e4868c6154d7ea04d42e07f6f10;p=platform%2Fupstream%2Fmesa.git gallivm: only do rcp/mul for floating rcp asserts on type.floating so don't go passing non-floating things into it. Signed-off-by: Dave Airlie --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit.c b/src/gallium/auxiliary/gallivm/lp_bld_arit.c index 6001844..4cc421d 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_arit.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_arit.c @@ -612,7 +612,8 @@ lp_build_div(struct lp_build_context *bld, return LLVMConstUDiv(a, b); } - if(util_cpu_caps.has_sse && type.width == 32 && type.length == 4) + if(util_cpu_caps.has_sse && type.width == 32 && type.length == 4 && + type.floating) return lp_build_mul(bld, a, lp_build_rcp(bld, b)); if (type.floating)