From patchwork Mon Jan 9 14:38:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 135029 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 0C4E7B6FA0 for ; Tue, 10 Jan 2012 01:39:11 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1326724752; h=Comment: DomainKey-Signature:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=Biz0Cfn WHOTEJCw3/hzhHeQd77s=; b=YXYQ7bcAvgrwj02+wds3q03vt0z7yCi9plRojNl 3d6NJcyTr51j4YMsJAFzsvWkWM5Dh+OZ3xpLVYYRCWJRn+Fx2J8AG+ijNhRUbDYm Q6iNPrEBd/ugkrSuEKuah8ZdC7xTu6O6FhfBrbUOkNenVmo1eDo62avBbgmMInKC 5DZY= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=Cn57VriHBYjVmL5spnLWyKt7SaSUjCWzjFGvGERpWxrGo3kHu/iNaxemC0lqjt F0F48iigqkYdTHqkxETGkSq2WGASdnkoVMsnz2IGg42mwy/uTSm5tNJnlaj1I/RT OiiFD7uP9oOM7AQHEEUHM/w45F9nNOof5vniDEP/8HYkA=; Received: (qmail 5714 invoked by alias); 9 Jan 2012 14:39:03 -0000 Received: (qmail 5603 invoked by uid 22791); 9 Jan 2012 14:39:02 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SUBJ_OBFU_PUNCT_FEW X-Spam-Check-By: sourceware.org Received: from mx02.qsc.de (HELO mx02.qsc.de) (213.148.130.14) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 09 Jan 2012 14:38:23 +0000 Received: from [192.168.178.22] (port-92-204-59-150.dynamic.qsc.de [92.204.59.150]) by mx02.qsc.de (Postfix) with ESMTP id 5C1601E29C; Mon, 9 Jan 2012 15:38:22 +0100 (CET) Message-ID: <4F0AFBDD.9000505@net-b.de> Date: Mon, 09 Jan 2012 15:38:21 +0100 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:9.0) Gecko/20111220 Thunderbird/9.0 MIME-Version: 1.0 To: gcc patches , gfortran Subject: [Patch, Fortran] gfortran.texi: Update (C) year and F2003 status 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 Ok for the trunk? (Build + "make pdf" tested) Tobias 2012-01-09 Tobias Burnus * gfortran.texi: Bump copyright year. (Fortran 2003 Status): Update polymorphism item, add item for generic interface with DT name. diff --git a/gcc/fortran/gfortran.texi b/gcc/fortran/gfortran.texi index aac2d90..faa997e 100644 --- a/gcc/fortran/gfortran.texi +++ b/gcc/fortran/gfortran.texi @@ -1,7 +1,7 @@ \input texinfo @c -*-texinfo-*- @c %**start of header @setfilename gfortran.info -@set copyrights-gfortran 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +@set copyrights-gfortran 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 @include gcc-common.texi @@ -795,8 +795,13 @@ override type-bound procedures or to have deferred binding. @item Polymorphic entities (``@code{CLASS}'') for derived types -- including @code{SAME_TYPE_AS}, @code{EXTENDS_TYPE_OF} and @code{SELECT TYPE}. -Note that the support for array-valued polymorphic entities is incomplete -and unlimited polymophism is currently not supported. +Note that unlimited polymophism is currently not supported. + +@item Generic interface name which have the same name as derived types are +now supported, which allows to write constructor functions. Note that +Fortran does not support static constructor functions. For static +variables, only default initialization or structure-constructor +initialization are available. @item The @code{ASSOCIATE} construct.