gallivm: Fix lp_build_exp/lp_build_log.

Never used so far -- we only used the base 2 variants -- which is why
it went unnoticed so far.
This commit is contained in:
José Fonseca 2011-07-19 15:58:09 -07:00
parent 0a1d49504d
commit 1ac86e249e

View file

@ -2151,7 +2151,7 @@ lp_build_exp(struct lp_build_context *bld,
assert(lp_check_value(bld->type, x));
return lp_build_mul(bld, log2e, lp_build_exp2(bld, x));
return lp_build_exp2(bld, lp_build_mul(bld, log2e, x));
}
@ -2168,7 +2168,7 @@ lp_build_log(struct lp_build_context *bld,
assert(lp_check_value(bld->type, x));
return lp_build_mul(bld, log2, lp_build_exp2(bld, x));
return lp_build_mul(bld, log2, lp_build_log2(bld, x));
}