Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 64701 invoked from network); 26 Mar 2008 15:25:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Mar 2008 15:25:33 -0000 Received: (qmail 95002 invoked by uid 500); 26 Mar 2008 15:25:32 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 94906 invoked by uid 500); 26 Mar 2008 15:25:31 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 94897 invoked by uid 99); 26 Mar 2008 15:25:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Mar 2008 08:25:31 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Mar 2008 15:25:00 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4E94C234C0AE for ; Wed, 26 Mar 2008 08:23:24 -0700 (PDT) Message-ID: <1202755735.1206545004320.JavaMail.jira@brutus> Date: Wed, 26 Mar 2008 08:23:24 -0700 (PDT) From: "Sian January (JIRA)" To: commits@harmony.apache.org Subject: [jira] Resolved: (HARMONY-5652) [classlib][pack200] max_locals computed incorrectly for longs, doubles In-Reply-To: <310565.1206474324484.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-5652?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sian January resolved HARMONY-5652. ----------------------------------- Resolution: Fixed Fix Version/s: 5.0M6 Patch applied at r641348. Please check it was applied as you expected. > [classlib][pack200] max_locals computed incorrectly for longs, doubles > ---------------------------------------------------------------------- > > Key: HARMONY-5652 > URL: https://issues.apache.org/jira/browse/HARMONY-5652 > Project: Harmony > Issue Type: Bug > Components: Classlib > Environment: All pack200 > Reporter: Andrew Cornwall > Assignee: Sian January > Fix For: 5.0M6 > > Attachments: main.patch > > > The value for max_locals is computed incorrectly for all methods which have long or double arguments (type J or type D). For instance, the max_locals for CpField's constructor: > public CPField(CPUTF8 name, CPUTF8 descriptor, long flags, List attributes) { > super(name, descriptor, flags, attributes); > } > is showing up as max_locals=5, when it should be max_locals=6 (1 for this, 1, for name, 1 for descriptor, 2 for flags, 1 for attributes). -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.