From patchwork Thu Dec 5 16:08:14 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 297189 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D178F2C00A6 for ; Fri, 6 Dec 2013 03:08:43 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=WqsCgPRaIKNufYpZod4WoW+YYwtkjocNmukUEGh9uLhjSS+Amu74s S4K3ML9BO8/wZhQUr8u582oLIn6kgegZe/5TQ6+bJgTSprxo4QW/xTyK58DVb1TB 6oJRZZlqXIjhwVJQht036AQT2wi+bnyHrNCg3VSRha60pehFDHDB4A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=5q7SyVPErwoJ3syvpWS6rPLFYFs=; b=fgbN4LzLFx9D3iRD/bGV rwmfxNnZGg8O77m3gJ6g56ae98lzpEESbfCZmOsJhKWk8QnPNk/OjLaj75kz/M/b q79JjJc9cI91y82/qN87y1vFW0jjpmuCdrchOvxFqeA5NJDYOG3pmAunesD9I48l HOyNx1oexpWWfflOYB1VThU= Received: (qmail 16791 invoked by alias); 5 Dec 2013 16:08:35 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 16779 invoked by uid 89); 5 Dec 2013 16:08:35 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from Unknown (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 05 Dec 2013 16:08:33 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1VobTN-0001zY-IK from joseph_myers@mentor.com for gcc-patches@gcc.gnu.org; Thu, 05 Dec 2013 08:08:17 -0800 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 5 Dec 2013 08:08:17 -0800 Received: from digraph.polyomino.org.uk (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.2.247.3; Thu, 5 Dec 2013 16:08:15 +0000 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.76) (envelope-from ) id 1VobTK-0004Yg-2x for gcc-patches@gcc.gnu.org; Thu, 05 Dec 2013 16:08:14 +0000 Date: Thu, 5 Dec 2013 16:08:14 +0000 From: "Joseph S. Myers" To: Subject: Mention __auto_type in 4.9 release notes Message-ID: MIME-Version: 1.0 I've applied this patch to include the new C extension __auto_type in the 4.9 release notes. Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.9/changes.html,v retrieving revision 1.44 diff -u -r1.44 changes.html --- changes.html 2 Dec 2013 21:44:13 -0000 1.44 +++ changes.html 5 Dec 2013 16:06:49 -0000 @@ -162,6 +162,9 @@ issues (mainly but not entirely relating to optional C99 features from Annexes F and G) and the optional Annexes K (Bounds-checking interfaces) and L (Analyzability). + +
  • A new C extension __auto_type provides a subset of + the functionality of C++11 auto in GNU C.
  • C++