From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 36629 invoked by alias); 25 May 2015 08:21:52 -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 36553 invoked by uid 89); 25 May 2015 08:21:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=no 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; Mon, 25 May 2015 08:21:42 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t4P8LeXC002385 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Mon, 25 May 2015 04:21:40 -0400 Received: from redhat.com (ovpn-204-52.brq.redhat.com [10.40.204.52]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t4P8LbpJ006762 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Mon, 25 May 2015 04:21:40 -0400 Date: Mon, 25 May 2015 10:25:00 -0000 From: Marek Polacek To: GCC Patches Subject: [wwwdocs] Update changes.html Message-ID: <20150525082136.GV27320@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-05/txt/msg02235.txt.bz2 I've committed the following update to reflect the recent addition. Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/changes.html,v retrieving revision 1.7 diff -u -r1.7 changes.html --- changes.html 14 May 2015 22:07:28 -0000 1.7 +++ changes.html 25 May 2015 08:13:52 -0000 @@ -32,6 +32,14 @@

C family

    +
  • The C and C++ compilers now support attributes on enumerators. For instance, + it is now possible to mark enumerators as deprecated: +
    +enum {
    +  newval,
    +  oldval __attribute__ ((deprecated ("too old")))
    +};
    +
  • A new command-line option -Wshift-negative-value has been added for the C and C++ compilers, which warns about left shifting a negative value.
  • Marek