Mesa (master): radeonsi: Remove incorrect (and dead) assignment in tex_fetch_args().

Michel Dänzer daenzer at kemper.freedesktop.org
Thu Feb 7 18:08:45 UTC 2013


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

Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Wed Feb  6 17:14:26 2013 +0100

radeonsi: Remove incorrect (and dead) assignment in tex_fetch_args().

The proper return type is assigned at the end of the function.

---

 src/gallium/drivers/radeonsi/radeonsi_shader.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader.c b/src/gallium/drivers/radeonsi/radeonsi_shader.c
index 2d640f2..36711be 100644
--- a/src/gallium/drivers/radeonsi/radeonsi_shader.c
+++ b/src/gallium/drivers/radeonsi/radeonsi_shader.c
@@ -911,8 +911,6 @@ static void tex_fetch_args(
 	while (count < util_next_power_of_two(count))
 		address[count++] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
 
-	emit_data->dst_type = LLVMVectorType(LLVMInt32TypeInContext(gallivm->context),
-					     count);
 	emit_data->args[1] = lp_build_gather_values(gallivm, address, count);
 
 	/* Resource */




More information about the mesa-commit mailing list