From patchwork Sun Nov 6 16:38:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 123944 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 E89BB1007D2 for ; Mon, 7 Nov 2011 04:42:07 +1100 (EST) Received: (qmail 16407 invoked by alias); 6 Nov 2011 17:42:06 -0000 Received: (qmail 16399 invoked by uid 22791); 6 Nov 2011 17:42:05 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (140.186.70.92) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 06 Nov 2011 17:41:52 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RN5kF-00010g-3F for gcc-patches@gcc.gnu.org; Sun, 06 Nov 2011 11:38:56 -0500 Received: from mx01.qsc.de ([213.148.129.14]:49172) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RN5k1-0000zI-0D; Sun, 06 Nov 2011 11:38:41 -0500 Received: from [192.168.178.22] (port-92-204-27-175.dynamic.qsc.de [92.204.27.175]) by mx01.qsc.de (Postfix) with ESMTP id B34803DBFF; Sun, 6 Nov 2011 17:38:23 +0100 (CET) Message-ID: <4EB6B7FF.2040405@net-b.de> Date: Sun, 06 Nov 2011 17:38:23 +0100 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: gcc patches , gfortran Subject: Re: [Patch,Fortran] PR39427/37829 - implement F2003's constructors References: <4EB6B534.9050602@net-b.de> In-Reply-To: <4EB6B534.9050602@net-b.de> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.148.129.14 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 Am 06.11.2011 17:26, schrieb Tobias Burnus: > I just realized that my patch email did not come through - however, I > did not get any reject email. Let's try first without patch - it's > available at > http://users.physik.fu-berlin.de/~tburnus/tmp/constructor.diff I wondered whether the patch exceeded the attachment size - I think it's around 100 kB. However, even the gipped email (about 20 kB) did not get through. Thus, you have to live with the URL above. As I do not know what's the problem, I cannot really solve it. Tobias PS: The patch for the release notes is attached - let's see whether that patch works. Index: htdocs/gcc-4.7/changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/changes.html,v retrieving revision 1.53 diff -u -p -r1.53 changes.html --- htdocs/gcc-4.7/changes.html 1 Nov 2011 15:15:33 -0000 1.53 +++ htdocs/gcc-4.7/changes.html 6 Nov 2011 15:11:20 -0000 @@ -373,6 +373,14 @@ long double pi = 180_degrees;-fno-backtrace. Note: GNU Fortran does not support backtracing on all targets. +
  • Fortran 2003: +
      +
    • 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; only + default initialization or an explicit structure-constructor + initialization are available.
    • +
  • Fortran 2008:
    • Support for the DO CONCURRENT construct has been