Module: Mesa Branch: master Commit: ffbb62f808a3c98ad4179f246b46be5c00d0736d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ffbb62f808a3c98ad4179f246b46be5c00d0736d
Author: Samuel Pitoiset <[email protected]> Date: Wed Apr 10 17:16:53 2019 +0200 ac/nir: remove useless integer cast in adjust_sample_index_using_fmask() It's already casted if necessary in ac_build_image_opcode(). Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Marek Olšák <[email protected]> --- src/amd/common/ac_nir_to_llvm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index de52f008dbf..f51e07d531d 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2334,7 +2334,6 @@ static LLVMValueRef adjust_sample_index_using_fmask(struct ac_llvm_context *ctx, res = ac_build_image_opcode(ctx, &args); - res = ac_to_integer(ctx, res); LLVMValueRef four = LLVMConstInt(ctx->i32, 4, false); LLVMValueRef F = LLVMConstInt(ctx->i32, 0xf, false); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
