Mesa (master): ac/nir: remove useless integer cast in adjust_sample_index_using_fmask()

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Apr 12 15:29:11 UTC 2019


Module: Mesa
Branch: master
Commit: ffbb62f808a3c98ad4179f246b46be5c00d0736d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ffbb62f808a3c98ad4179f246b46be5c00d0736d

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
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 <samuel.pitoiset at gmail.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 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);
 




More information about the mesa-commit mailing list