From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71367 invoked by alias); 9 Apr 2015 14:51:15 -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 71070 invoked by uid 89); 9 Apr 2015 14:51:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.6 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 09 Apr 2015 14:51:14 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 16F8B8E6FE; Thu, 9 Apr 2015 14:51:13 +0000 (UTC) Received: from [10.10.116.43] ([10.10.116.43]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t39EpCdj025545; Thu, 9 Apr 2015 10:51:12 -0400 Message-ID: <552691E0.8010801@redhat.com> Date: Thu, 09 Apr 2015 14:51:00 -0000 From: Jason Merrill User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Jakub Jelinek , Jan Hubicka CC: gcc-patches@gcc.gnu.org Subject: Re: [C++ PATCH] Fix alignment handling in build_cplus_array_type/cp_build_qualified_type_real (PR c++/65690) References: <20150408100239.GO19273@tucnak.redhat.com> <20150409093856.GD19273@tucnak.redhat.com> In-Reply-To: <20150409093856.GD19273@tucnak.redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-04/txt/msg00398.txt.bz2 On 04/09/2015 05:38 AM, Jakub Jelinek wrote: > Or supposedly no change at all, as the attributes would be either in > TYPE_ATTRIBUTES, or on TYPE_DECL, but then it would be covered by > the TYPE_NAME comparison. Interesting point. So maybe all we need to do here is copy TYPE_ALIGN/TYPE_USER_ALIGN, not change any of the tests. Jason