From patchwork Wed Mar 7 14:37:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnaud Charlet X-Patchwork-Id: 145298 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 55A9AB6EF3 for ; Thu, 8 Mar 2012 01:38:19 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1331735899; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Received:Date:From:To:Cc:Subject:Message-ID: MIME-Version:Content-Type:Content-Disposition:User-Agent: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=i+ih7Y54Qgwxs1EgFOwc pZm/0YU=; b=dX0fyOe+PnLx9Vousqx312UXjHz+e/jgF1cCZtpW8fzkkng04sPf yJwLqFudKIkkJ4EguiYg4XE/znEvqiV5xmeHL7xAmcwUH+iWxe2FrjyQ+Ot6+/4Z cplR1Luj3wCP9lDLM9cQHndeqZUvi+bTAp/aBYZgLkZ0Mj0oHiC+Flw= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:Received:Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type:Content-Disposition:User-Agent:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=G8LLkBlb7OZVfbOBN5KhAeElXYEh7JHQR/e1gJtibIqnRI7DQmDE2o8c3XGMVO JKTdPr+6mCSVwMVvakg4gkeRCeewY9rCeSME1xctOjrw9YYFGV3cWkLhMEp6ll1U Tv2mOHO1QDDlkBXH1w0lKG6nXWuAO7E0o7Qp/oJyT1B+c=; Received: (qmail 21447 invoked by alias); 7 Mar 2012 14:38:11 -0000 Received: (qmail 21318 invoked by uid 22791); 7 Mar 2012 14:38:10 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Mar 2012 14:37:56 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 4F84F1C6A0A; Wed, 7 Mar 2012 09:37:55 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id wD3k8xAbnKfw; Wed, 7 Mar 2012 09:37:55 -0500 (EST) Received: from kwai.gnat.com (kwai.gnat.com [205.232.38.4]) by rock.gnat.com (Postfix) with ESMTP id 38BBD1C6875; Wed, 7 Mar 2012 09:37:55 -0500 (EST) Received: by kwai.gnat.com (Postfix, from userid 4192) id 37B873FEE8; Wed, 7 Mar 2012 09:37:55 -0500 (EST) Date: Wed, 7 Mar 2012 09:37:55 -0500 From: Arnaud Charlet To: gcc-patches@gcc.gnu.org Cc: Bob Duff Subject: [Ada] Increase maximum number of instantiations Message-ID: <20120307143755.GA10714@adacore.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) 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 This patch increases the maximum number of instantiations allowed per compilation. Tested on x86_64-pc-linux-gnu, committed on trunk 2012-03-07 Bob Duff * hostparm.ads (Max_Instantiations): Increase parameter. Index: hostparm.ads =================================================================== --- hostparm.ads (revision 185043) +++ hostparm.ads (working copy) @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2012, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -69,7 +69,7 @@ -- of file names in the library, must be at least Max_Line_Length, but -- can be larger. - Max_Instantiations : constant := 4000; + Max_Instantiations : constant := 8000; -- Maximum number of instantiations permitted (to stop runaway cases -- of nested instantiations). These situations probably only occur in -- specially concocted test cases.