From patchwork Mon Jan 10 16:44:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kai Tietz X-Patchwork-Id: 78170 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 24329B7147 for ; Tue, 11 Jan 2011 03:44:45 +1100 (EST) Received: (qmail 14922 invoked by alias); 10 Jan 2011 16:44:44 -0000 Received: (qmail 14911 invoked by uid 22791); 10 Jan 2011 16:44:43 -0000 X-SWARE-Spam-Status: No, hits=-1.1 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, RFC_ABUSE_POST X-Spam-Check-By: sourceware.org Received: from mail-qw0-f47.google.com (HELO mail-qw0-f47.google.com) (209.85.216.47) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 10 Jan 2011 16:44:38 +0000 Received: by qwi2 with SMTP id 2so4091765qwi.20 for ; Mon, 10 Jan 2011 08:44:37 -0800 (PST) MIME-Version: 1.0 Received: by 10.229.192.149 with SMTP id dq21mr14049157qcb.57.1294677876974; Mon, 10 Jan 2011 08:44:36 -0800 (PST) Received: by 10.229.214.131 with HTTP; Mon, 10 Jan 2011 08:44:36 -0800 (PST) Date: Mon, 10 Jan 2011 17:44:36 +0100 Message-ID: Subject: [patch java]: PR/47214 This time for s390 add long_integer_type_node From: Kai Tietz To: GCC Patches Cc: Tom Tromey X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Hello, another type necessary not initialized in java's decl.c file. This time for s390 ChangeLog 2011-01-10 Kai Tietz PR bootstrap/47215 * decl.c (java_init_decl_processing): Initialize long_integer_type_node. Index: decl.c =================================================================== --- decl.c (revision 168626) +++ decl.c (working copy) @@ -1155,6 +1155,8 @@ 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.