From: Michel Dänzer Date: Wed, 6 Feb 2013 16:14:26 +0000 (+0100) Subject: radeonsi: Remove incorrect (and dead) assignment in tex_fetch_args(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9816cc7845ea2167811e375f6a8fb98bea119de;p=mesa.git radeonsi: Remove incorrect (and dead) assignment in tex_fetch_args(). The proper return type is assigned at the end of the function. --- diff --git a/src/gallium/drivers/radeonsi/radeonsi_shader.c b/src/gallium/drivers/radeonsi/radeonsi_shader.c index 2d640f245b2..36711be352f 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 */