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

The proper return type is assigned at the end of the function.
This commit is contained in:
Michel Dänzer 2013-02-06 17:14:26 +01:00 committed by Michel Dänzer
parent 07eddc444c
commit a9816cc784

View file

@ -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 */