From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 44623 invoked by alias); 15 Apr 2016 14:33:38 -0000 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 Received: (qmail 44450 invoked by uid 89); 15 Apr 2016 14:33:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1016, unblock X-HELO: mail-qg0-f47.google.com Received: from mail-qg0-f47.google.com (HELO mail-qg0-f47.google.com) (209.85.192.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Fri, 15 Apr 2016 14:33:34 +0000 Received: by mail-qg0-f47.google.com with SMTP id j35so81932160qge.0 for ; Fri, 15 Apr 2016 07:33:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:subject:to:references:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=3YZWQz3+g1yYQOhfgReS2e04psD+syeCfgGHFGg8eJE=; b=S8NV+xRSmbl89dR0xyegwJdbNyONpFwqkfLGqNm6nFexFBf9r0J9PKq6WhL8V3XqxA 7HTXmUeFVqYkw1XCkpGKO0q946fzY3AxFa1DZresDk8o0uCAhNJGb2xBSwvUAy1BIrnf 08L0mHHOf0+ZV3HKEs10J+XdzI3pZ+E3NdExt5TEhweyE/yVijLvDw4JwBdWP1c8nTKQ lxFGb1VYUVNUT54GZLUhXRcjhhcX1UQ4DWUK6X0udqO4FSaSSDjjRd+0k5td0HuyxMu3 kt1nu0V/PJjwacEztzyNf0ba4oc7azhAlGrl9XJeYbDDshXAI7zFNAH93nJS574HmUbS sDhA== X-Gm-Message-State: AOPr4FUpj51hS22a+k88T0tOlJNvfLdfD6pMrn7t9l30SYJx38YEkKCyVqPludnGFx0OQQ== X-Received: by 10.140.89.19 with SMTP id u19mr25474648qgd.90.1460730811763; Fri, 15 Apr 2016 07:33:31 -0700 (PDT) Received: from [192.168.0.26] (71-215-82-187.hlrn.qwest.net. [71.215.82.187]) by smtp.gmail.com with ESMTPSA id a6sm9130040qhd.33.2016.04.15.07.33.30 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Apr 2016 07:33:31 -0700 (PDT) Subject: Re: [PATCH] 69517 - [5/6 regression] SEGV on a VLA with excess initializer elements To: Jakub Jelinek References: <56F2F2D8.10708@gmail.com> <56F40CA1.3060005@redhat.com> <56FEFE08.8010207@gmail.com> <5702FA46.9020807@redhat.com> <5706F5D5.9030204@gmail.com> <570ADE43.9080107@gmail.com> <570D3BC1.1040608@redhat.com> <570E91B1.90602@gmail.com> <570FB693.5080806@gmail.com> <20160415123111.GR19207@tucnak.redhat.com> Cc: Andreas Schwab , Jason Merrill , Gcc Patch List From: Martin Sebor Message-ID: <5710FBB8.20304@gmail.com> Date: Fri, 15 Apr 2016 14:33:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 MIME-Version: 1.0 In-Reply-To: <20160415123111.GR19207@tucnak.redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2016-04/txt/msg00742.txt.bz2 On 04/15/2016 06:31 AM, Jakub Jelinek wrote: > On Thu, Apr 14, 2016 at 09:26:11AM -0600, Martin Sebor wrote: >>> /daten/aranym/gcc/gcc-20160414/gcc/testsuite/g++.dg/cpp1y/vla11.C: In instantiation of 'struct TestType<32u>': >>> /daten/aranym/gcc/gcc-20160414/gcc/testsuite/g++.dg/cpp1y/vla11.C:201:1: required from here >>> /daten/aranym/gcc/gcc-20160414/gcc/testsuite/g++.dg/cpp1y/vla11.C:89:27: error: requested alignment 32 is larger than 16 [-Wattributes] >> >> Thank you for the heads up (and sorry about the breakage). I've >> committed r234976 to fix that. > > Probably because of this change you haven't reverted (removed) the vla11.C > testcase even when the ChangeLog said you've done that. > And, the testcase obviously fails on the trunk, so I've committed following > as obvious: Probably. I was rushing to unblock others whose bootstrap was failing and didn't check carefully enough. Thanks for fixing that. Martin