Module: Mesa Branch: master Commit: d38eece4e6bde42f8e63238497075213bb573f72 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d38eece4e6bde42f8e63238497075213bb573f72
Author: Dave Airlie <[email protected]> Date: Thu Dec 8 00:12:08 2016 +0000 radv: fix warnings in ubo load code. Reviewed by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Edward O'Callaghan <[email protected]> Signed-off-by: Dave Airlie <[email protected]> --- src/amd/common/ac_nir_to_llvm.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 5820e62..c2a74d4 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2095,9 +2095,6 @@ static LLVMValueRef visit_load_buffer(struct nir_to_llvm_context *ctx, static LLVMValueRef visit_load_ubo_buffer(struct nir_to_llvm_context *ctx, nir_intrinsic_instr *instr) { - const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic]; - const char *load_name; - LLVMTypeRef data_type = ctx->f32; LLVMValueRef results[4], ret; LLVMValueRef rsrc = get_src(ctx, instr->src[0]); LLVMValueRef offset = get_src(ctx, instr->src[1]); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
