From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9959 invoked by alias); 6 Jun 2011 16:47:37 -0000 Received: (qmail 9950 invoked by uid 22791); 6 Jun 2011 16:47:37 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (74.125.121.67) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 06 Jun 2011 16:47:20 +0000 Received: from wpaz33.hot.corp.google.com (wpaz33.hot.corp.google.com [172.24.198.97]) by smtp-out.google.com with ESMTP id p56GlH5o003786 for ; Mon, 6 Jun 2011 09:47:18 -0700 Received: from iyj12 (iyj12.prod.google.com [10.241.51.76]) by wpaz33.hot.corp.google.com with ESMTP id p56Gkn6n012335 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT) for ; Mon, 6 Jun 2011 09:47:16 -0700 Received: by iyj12 with SMTP id 12so5616191iyj.27 for ; Mon, 06 Jun 2011 09:47:16 -0700 (PDT) Received: by 10.42.73.4 with SMTP id q4mr9094884icj.156.1307378833133; Mon, 06 Jun 2011 09:47:13 -0700 (PDT) Received: from coign.google.com ([216.239.45.130]) by mx.google.com with ESMTPS id vo3sm2846647icb.10.2011.06.06.09.47.11 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 06 Jun 2011 09:47:12 -0700 (PDT) From: Ian Lance Taylor To: Richard Guenther Cc: gcc-patches@gcc.gnu.org, "Joseph S. Myers" Subject: Re: [PING][PATCH][all-langs] Defer size_t and sizetype setting to the middle-end References: Date: Mon, 06 Jun 2011 16:47:00 -0000 In-Reply-To: (Richard Guenther's message of "Mon, 6 Jun 2011 16:57:20 +0200 (CEST)") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-System-Of-Record: true X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2011-06/txt/msg00430.txt.bz2 Richard Guenther writes: >> 2011-06-01 Richard Guenther >> >> * tree.c (build_common_tree_nodes): Also initialize size_type_node. >> Call set_sizetype from here. >> >> c-family/ >> * c-common.c (c_common_nodes_and_builtins): Do not set >> size_type_node or call set_sizetype. >> >> go/ >> * go-lang.c (go_langhook_init): Do not set >> size_type_node or call set_sizetype. >> >> fortran/ >> * f95-lang.c (gfc_init_decl_processing): Do not set >> size_type_node or call set_sizetype. >> >> java/ >> * decl.c (java_init_decl_processing): Properly initialize >> size_type_node. >> >> lto/ >> * lto-lang.c (lto_init): Do not set >> size_type_node or call set_sizetype. >> >> ada/ >> * gcc-interface/misc.c (gnat_init): Do not set >> size_type_node or call set_sizetype. The change to the Go frontend is fine. The change to the C frontend is fine too unless somebody objects soon. Ian