Module: Mesa Branch: master Commit: 3d45acf71cefeeac77e9c4af7f1f8b776a9a8d16 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3d45acf71cefeeac77e9c4af7f1f8b776a9a8d16
Author: Timothy Arceri <[email protected]> Date: Thu Nov 2 12:44:08 2017 +1100 ac: remove unused i16 llvm type Reviewed-by: Dave Airlie <[email protected]> Reviewed-by: Marek Olšák <[email protected] Acked-by: Nicolai Hähnle <[email protected]> --- src/amd/common/ac_nir_to_llvm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index d741fb7b45..c3c9d7a859 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -134,7 +134,6 @@ struct nir_to_llvm_context { LLVMValueRef persp_sample, persp_center, persp_centroid; LLVMValueRef linear_sample, linear_center, linear_centroid; - LLVMTypeRef i16; LLVMTypeRef i64; LLVMTypeRef v2i32; LLVMTypeRef v3i32; @@ -994,7 +993,6 @@ static void create_function(struct nir_to_llvm_context *ctx, static void setup_types(struct nir_to_llvm_context *ctx) { - ctx->i16 = LLVMIntTypeInContext(ctx->context, 16); ctx->i64 = LLVMIntTypeInContext(ctx->context, 64); ctx->v2i32 = LLVMVectorType(ctx->ac.i32, 2); ctx->v3i32 = LLVMVectorType(ctx->ac.i32, 3); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
