From 76c39e5f7b36dcd6f8cf68f661c543d1528b7f86 Mon Sep 17 00:00:00 2001 From: Alexander Kabaev Date: Mon, 10 Feb 2003 05:58:19 +0000 Subject: [PATCH] Merge FreeBSD modifications into gcc 3.2.2 release: 1.2 framework for our kernel printf enhancements. 1.3 suppress prototype warnings on K&R main. --- contrib/gcc/c-common.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/contrib/gcc/c-common.h b/contrib/gcc/c-common.h index c6128183f01..428a23bc33a 100644 --- a/contrib/gcc/c-common.h +++ b/contrib/gcc/c-common.h @@ -138,10 +138,6 @@ enum c_tree_index CTI_SIGNED_WCHAR_TYPE, CTI_UNSIGNED_WCHAR_TYPE, CTI_WINT_TYPE, - CTI_C_SIZE_TYPE, /* The type used for the size_t typedef and the - result type of sizeof (an ordinary type without - TYPE_IS_SIZETYPE set, unlike the internal - sizetype). */ CTI_SIGNED_SIZE_TYPE, /* For format checking only. */ CTI_UNSIGNED_PTRDIFF_TYPE, /* For format checking only. */ CTI_INTMAX_TYPE, @@ -195,7 +191,6 @@ struct c_common_identifier #define signed_wchar_type_node c_global_trees[CTI_SIGNED_WCHAR_TYPE] #define unsigned_wchar_type_node c_global_trees[CTI_UNSIGNED_WCHAR_TYPE] #define wint_type_node c_global_trees[CTI_WINT_TYPE] -#define c_size_type_node c_global_trees[CTI_C_SIZE_TYPE] #define signed_size_type_node c_global_trees[CTI_SIGNED_SIZE_TYPE] #define unsigned_ptrdiff_type_node c_global_trees[CTI_UNSIGNED_PTRDIFF_TYPE] #define intmax_type_node c_global_trees[CTI_INTMAX_TYPE]