radv: Clean up a bunch of compiler warnings.
authorBas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Wed, 20 Feb 2019 00:02:51 +0000 (01:02 +0100)
committerBas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Wed, 20 Feb 2019 02:21:09 +0000 (03:21 +0100)
Random unused vars.

Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/amd/vulkan/radv_nir_to_llvm.c
src/amd/vulkan/radv_pass.c
src/amd/vulkan/radv_pipeline.c

index 38ad9893644836a3415b0a7a57003fb513a4e4ba..e5a60e604d4aa5be11b44efbaed294a424ce9402 100644 (file)
@@ -2066,7 +2066,6 @@ radv_fixup_vertex_input_fetches(struct radv_shader_context *ctx,
 {
        LLVMValueRef zero = is_float ? ctx->ac.f32_0 : ctx->ac.i32_0;
        LLVMValueRef one = is_float ? ctx->ac.f32_1 : ctx->ac.i32_1;
-       LLVMTypeRef elemtype;
        LLVMValueRef chan[4];
 
        if (LLVMGetTypeKind(LLVMTypeOf(value)) == LLVMVectorTypeKind) {
@@ -2079,14 +2078,11 @@ radv_fixup_vertex_input_fetches(struct radv_shader_context *ctx,
 
                for (unsigned i = 0; i < num_channels; i++)
                        chan[i] = ac_llvm_extract_elem(&ctx->ac, value, i);
-
-               elemtype = LLVMGetElementType(LLVMTypeOf(value));
        } else {
                if (num_channels) {
                        assert(num_channels == 1);
                        chan[0] = value;
                }
-               elemtype = LLVMTypeOf(value);
        }
 
        for (unsigned i = num_channels; i < 4; i++) {
index 7a724dc2da5cbb1efbf36a5d4332374fcb6d5551..4d1e38a780e89e3092665e0e9b8c433a50bd206a 100644 (file)
@@ -250,7 +250,6 @@ VkResult radv_CreateRenderPass(
                        p += desc->colorAttachmentCount;
 
                        for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
-                               uint32_t a = desc->pResolveAttachments[j].attachment;
                                subpass->resolve_attachments[j] = (struct radv_subpass_attachment) {
                                        .attachment = desc->pResolveAttachments[j].attachment,
                                        .layout = desc->pResolveAttachments[j].layout,
@@ -397,7 +396,6 @@ VkResult radv_CreateRenderPass2KHR(
                        p += desc->colorAttachmentCount;
 
                        for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
-                               uint32_t a = desc->pResolveAttachments[j].attachment;
                                subpass->resolve_attachments[j] = (struct radv_subpass_attachment) {
                                        .attachment = desc->pResolveAttachments[j].attachment,
                                        .layout = desc->pResolveAttachments[j].layout,
index 519aad6cd5803522b2bab5d31ecb92a47cac5591..2d9c362404522752817f376fc0ac8d2de3454e64 100644 (file)
@@ -3198,7 +3198,6 @@ radv_compute_db_shader_control(const struct radv_device *device,
                               const struct radv_pipeline *pipeline,
                                const struct radv_shader_variant *ps)
 {
-       const struct radv_multisample_state *ms = &pipeline->graphics.ms;
        unsigned z_order;
        if (ps->info.fs.early_fragment_test || !ps->info.info.ps.writes_memory)
                z_order = V_02880C_EARLY_Z_THEN_LATE_Z;