From: José Fonseca Date: Sat, 24 Apr 2010 08:58:41 +0000 (+0100) Subject: gallivm: LLVMConstBitCast -> LLVMBuildBitCast X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35a920e83b2e85f1180d9c0a752ef917f2e08416;p=mesa.git gallivm: LLVMConstBitCast -> LLVMBuildBitCast As the argument in general might not be a constant. --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit.c b/src/gallium/auxiliary/gallivm/lp_bld_arit.c index d6967633172..5f9d4c62d1c 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_arit.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_arit.c @@ -1503,7 +1503,7 @@ lp_build_log2_approx(struct lp_build_context *bld, } if(p_exp) { - exp = LLVMConstBitCast(exp, vec_type); + exp = LLVMBuildBitCast(bld->builder, exp, vec_type, ""); *p_exp = exp; } @@ -1575,8 +1575,10 @@ lp_build_float_log2_approx(struct lp_build_context *bld, res = LLVMBuildAdd(bld->builder, logmant, logexp, ""); } - if(p_exp) + if(p_exp) { + exp = LLVMBuildBitCast(bld->builder, exp, float_type, ""); *p_exp = exp; + } if(p_floor_log2) *p_floor_log2 = logexp;