gallivm: fix find lsb

the GLSL return value is different than the llvm intrinsic.

Fixes arb gpu shader5 tests

Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3528>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3528>
This commit is contained in:
Dave Airlie 2020-01-20 14:56:36 +10:00
parent 1e433c398e
commit 48ab21109c

View file

@ -276,7 +276,8 @@ lp_build_cttz(struct lp_build_context *bld, LLVMValueRef a)
LLVMValueRef undef_val = LLVMConstNull(LLVMInt1TypeInContext(bld->gallivm->context));
result = lp_build_intrinsic_binary(builder, intr_str, bld->vec_type, a, undef_val);
return result;
return LLVMBuildSelect(builder, LLVMBuildICmp(builder, LLVMIntEQ, a, bld->zero, ""),
lp_build_const_int_vec(bld->gallivm, bld->type, -1), result, "");
}
LLVMValueRef