From patchwork Wed Oct 6 14:52:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Lance Taylor X-Patchwork-Id: 66936 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]) by ozlabs.org (Postfix) with SMTP id 8EA88B6F10 for ; Thu, 7 Oct 2010 01:52:37 +1100 (EST) Received: (qmail 14434 invoked by alias); 6 Oct 2010 14:52:36 -0000 Received: (qmail 14425 invoked by uid 22791); 6 Oct 2010 14:52:35 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, SPF_HELO_PASS, T_RP_MATCHES_RCVD, T_TVD_MIME_NO_HEADERS X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.44.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 06 Oct 2010 14:52:30 +0000 Received: from hpaq7.eem.corp.google.com (hpaq7.eem.corp.google.com [172.25.149.7]) by smtp-out.google.com with ESMTP id o96EqSrU002927 for ; Wed, 6 Oct 2010 07:52:28 -0700 Received: from pxi17 (pxi17.prod.google.com [10.243.27.17]) by hpaq7.eem.corp.google.com with ESMTP id o96EqOd7019140 for ; Wed, 6 Oct 2010 07:52:27 -0700 Received: by pxi17 with SMTP id 17so3902797pxi.15 for ; Wed, 06 Oct 2010 07:52:24 -0700 (PDT) Received: by 10.142.117.21 with SMTP id p21mr11751995wfc.86.1286376744410; Wed, 06 Oct 2010 07:52:24 -0700 (PDT) Received: from coign.google.com ([67.218.106.122]) by mx.google.com with ESMTPS id q13sm1023886wfc.17.2010.10.06.07.52.20 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 06 Oct 2010 07:52:22 -0700 (PDT) From: Ian Lance Taylor To: gcc-patches@gcc.gnu.org Subject: PATCH COMMITTED: Mention -fplan9-extensions in changes file Date: Wed, 06 Oct 2010 07:52:17 -0700 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) MIME-Version: 1.0 X-System-Of-Record: true X-IsSubscribed: yes 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 I committed this patch to the web site to mention the new -fplan9-extensions option in the list of gcc 4.6 changes on the web site. Ian Index: htdocs/gcc-4.6/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.6/changes.html,v retrieving revision 1.49 diff -u -r1.49 changes.html --- htdocs/gcc-4.6/changes.html 2 Oct 2010 03:50:29 -0000 1.49 +++ htdocs/gcc-4.6/changes.html 6 Oct 2010 14:51:19 -0000 @@ -106,6 +106,18 @@

C family

+

C

+ +
    +
  • The new -fplan9-extensions option directs the + compiler to support some extensions for anonymous struct fields + which are implemented by the Plan 9 compiler. A pointer to a + struct may be automatically converted to a pointer to an + anonymous field when calling a function, in order to make the + types match. An anonymous struct field whose type is a typedef + name may be referred to using the typedef name.
  • +
+

C++