From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21481 invoked by alias); 15 Jan 2019 10:55:26 -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 21469 invoked by uid 89); 15 Jan 2019 10:55:26 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,GIT_PATCH_2,GIT_PATCH_3,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1014 X-HELO: mail-lj1-f182.google.com Received: from mail-lj1-f182.google.com (HELO mail-lj1-f182.google.com) (209.85.208.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 15 Jan 2019 10:55:24 +0000 Received: by mail-lj1-f182.google.com with SMTP id t9-v6so1914269ljh.6 for ; Tue, 15 Jan 2019 02:55:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1tP+tdTBDssjFPo1CYhZi0kZ3DZ53yc4tqNhwAkZDJI=; b=jZLM61tLswukHWSm9YIVKWWnrm+7Q7mD3YKqj2fV29nhRu9A3wpr3qs0wjElz5kVub neP2B8ggkb4fwEm2Xth4MyVjQt88IoySsmUesHdxZk3vS1DCi7tpNPMOwX8ifbZDpYwx I2WKVHjeajL44w5uBJeD2/w3welsU99tEuhnutclWWqIyyFIRd8fPRSDoPVXwe1OVqif fPJbFCi5XCK2G2FvD8h3w4hVtJd9E9FBCSJHcSkpqGUuZ3q22+4txHbTbGALIv5skqlR yf+y6C6kvE+tLFyephjPmvS3mVnXDArr64Z6BX8MUA0YlsXo8BDRSewICPkM0sU7wBMp DV9g== MIME-Version: 1.0 References: <20190114143503.GA22371@lucon.org> In-Reply-To: <20190114143503.GA22371@lucon.org> From: Richard Biener Date: Tue, 15 Jan 2019 10:55:00 -0000 Message-ID: Subject: Re: [PATCH]: Mention -Waddress-of-packed-member change in GCC 9 To: "H.J. Lu" Cc: GCC Patches Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg00830.txt.bz2 On Mon, Jan 14, 2019 at 3:35 PM H.J. Lu wrote > > OK to install? > > H.J. > --- > Index: changes.html > =================================================================== > RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-9/changes.html,v > retrieving revision 1.34 > diff -u -p -r1.34 changes.html > --- changes.html 13 Jan 2019 17:40:11 -0000 1.34 > +++ changes.html 14 Jan 2019 14:33:58 -0000 > @@ -79,6 +79,14 @@ a work-in-progress.

>
  • __builtin_convertvector built-in for vector conversions > has been added.
  • > > + > +
  • New warnings: > +
      > +
    • -Waddress-of-packed-member, enabled by default, > + warns unaligned pointer value from adress of packed member of > + struct or union. "warns about an unaligned pointer value from the address of a packed member of a struct or union." OK with that change. Richard. > +
    • > +
  • > > >

    C++