From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9728 invoked by alias); 5 Oct 2012 13:45:53 -0000 Received: (qmail 9679 invoked by uid 22791); 5 Oct 2012 13:45:52 -0000 X-SWARE-Spam-Status: No, hits=-8.1 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,KHOP_THREADED,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 05 Oct 2012 13:45:42 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q95Djfkm014636 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 5 Oct 2012 09:45:41 -0400 Received: from [10.3.113.34] (ovpn-113-34.phx2.redhat.com [10.3.113.34]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q95DjfFq010237; Fri, 5 Oct 2012 09:45:41 -0400 Message-ID: <506EE484.4000708@redhat.com> Date: Fri, 05 Oct 2012 13:45:00 -0000 From: Jason Merrill User-Agent: Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20120911 Thunderbird/15.0.1 MIME-Version: 1.0 To: Jakub Jelinek CC: gcc-patches@gcc.gnu.org Subject: Re: [C++ PATCH] -Wsizeof-pointer-memaccess warning (take 2) References: <20120816191535.GM1999@tucnak.redhat.com> <5059CF5F.4030308@redhat.com> <20120925153640.GM1787@tucnak.redhat.com> <20121002125629.GJ1787@tucnak.redhat.com> In-Reply-To: <20121002125629.GJ1787@tucnak.redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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 X-SW-Source: 2012-10/txt/msg00509.txt.bz2 On 10/02/2012 08:56 AM, Jakub Jelinek wrote: > Perhaps maybe_constant_value already does all that integral_constant_value > does, but I'm not sure about it. It does, you can remove that call. OK with that change. Jason