From: Samuel Pitoiset Date: Wed, 12 Sep 2018 13:40:05 +0000 (+0200) Subject: radv: bump the maximum number of arguments to 64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b9f6521157ab55073eec528cacc1f3b567e49503;p=mesa.git radv: bump the maximum number of arguments to 64 Bumping to 64 should be safe enough. Fixes some crashes with new CTS: dEQP-VK.binding_model.descriptorset_random.* CC: 18.2 Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_nir_to_llvm.c b/src/amd/vulkan/radv_nir_to_llvm.c index 838e026c8e9..703112e27af 100644 --- a/src/amd/vulkan/radv_nir_to_llvm.c +++ b/src/amd/vulkan/radv_nir_to_llvm.c @@ -416,7 +416,7 @@ get_tcs_out_current_patch_data_offset(struct radv_shader_context *ctx) patch0_patch_data_offset); } -#define MAX_ARGS 23 +#define MAX_ARGS 64 struct arg_info { LLVMTypeRef types[MAX_ARGS]; LLVMValueRef *assign[MAX_ARGS];