From: Samuel Pitoiset Date: Wed, 10 Apr 2019 15:16:54 +0000 (+0200) Subject: ac/nir: remove useless integer cast in visit_image_load() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a6442075f0611d4ccdddfd77fd6b2342d5b2ef0;p=mesa.git ac/nir: remove useless integer cast in visit_image_load() ac_build_image_opcode() casts if necessary and buffer images are casted too. Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index f51e07d531d..546d43979ce 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2550,7 +2550,7 @@ static LLVMValueRef visit_image_load(struct ac_nir_context *ctx, res = ac_build_image_opcode(&ctx->ac, &args); } - return ac_to_integer(&ctx->ac, res); + return res; } static void visit_image_store(struct ac_nir_context *ctx,