From 6a457a13eea9e99c6dc4598eb101c20c963780d7 Mon Sep 17 00:00:00 2001 From: ktietz Date: Fri, 21 Jan 2011 09:05:14 +0000 Subject: 2011-01-21 Kai Tietz PR bootstrap/47215 * decl.c (java_init_decl_processing): Remove va_list_type_node related type initializations. 2011-01-21 Kai Tietz PR bootstrap/47215 * config/i386/i386.c (ix86_local_alignment): Handle case for va_list_type_node is nil. (ix86_canonical_va_list_type): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169080 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/decl.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'gcc/java/decl.c') diff --git a/gcc/java/decl.c b/gcc/java/decl.c index d575a422334..a17b826696b 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1153,21 +1153,6 @@ java_init_decl_processing (void) soft_lrem_node = add_builtin_function ("_Jv_remJ", t, 0, NOT_BUILT_IN, NULL, NULL_TREE); - /* Initialize va_list_type_node. */ - unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE); - long_integer_type_node = make_signed_type (LONG_TYPE_SIZE); - - t = targetm.build_builtin_va_list (); - - /* Many back-ends define record types without setting TYPE_NAME. - If we copied the record type here, we'd keep the original - record type without a name. This breaks name mangling. So, - don't copy record types and let c_common_nodes_and_builtins() - declare the type to be __builtin_va_list. */ - if (TREE_CODE (t) != RECORD_TYPE) - t = build_variant_type_copy (t); - - va_list_type_node = t; initialize_builtins (); -- cgit v1.2.1