From patchwork Fri Oct 4 16:55:30 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 280675 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5CBA62C00C1 for ; Sat, 5 Oct 2013 02:56:03 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=jsAcgPO7TPpZO/jqcCY2GhJi2nNRcp9CXEsD3ML/koMkR8 OK2lLqTRjYJ2zHTaV6btH5Onl4z3yjuoJ1KUQ9GaWw4B1ffXLHrwxMG9Z84LCJT/ TqOsQ4hfB67hg5rly+YXiNE7oaVVCGPGtNCDDMe0OuwkJ4KrauJre1XJuIrR4= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=omey3284c61jkuzz0KcSIXJzwNI=; b=HYM14qx1grovUgzSjoL+ G3icaN4CwbF/JjFkEU4FyFhbrL/WPU6+r/JCRWfmVBRsA/XkR/un0SJgUzJcI24R hkvEtZGR8oVUBLcWyml7/VmO6yM0W+G9I4irA8pcE2CWyI2phahrCqgICF/OWjyI I3PIdK9Bzd6Wb8Pl1F5w46Y= Received: (qmail 495 invoked by alias); 4 Oct 2013 16:55:55 -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 355 invoked by uid 89); 4 Oct 2013 16:55:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 04 Oct 2013 16:55:52 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VS8fI-0001EE-Rf for gcc-patches@gcc.gnu.org; Fri, 04 Oct 2013 12:55:50 -0400 Received: from mx01.qsc.de ([213.148.129.14]:32963) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VS8f7-0001AA-6j; Fri, 04 Oct 2013 12:55:34 -0400 Received: from archimedes.net-b.de (port-92-194-74-217.dynamic.qsc.de [92.194.74.217]) by mx01.qsc.de (Postfix) with ESMTP id 9572F3CC4C; Fri, 4 Oct 2013 18:55:30 +0200 (CEST) Message-ID: <524EF302.5040300@net-b.de> Date: Fri, 04 Oct 2013 18:55:30 +0200 From: Tobias Burnus User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: gcc patches , gfortran Subject: [Patch, Fortran, committed] GCC 4.8 backporting of defined assignment patches X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 213.148.129.14 I have committed the attached patch to the GCC 4.8 branch, backporting some defined assignment patches. Committed as Rev. 203207/203208. GCC 4.8 added defined assignment for components during intrinsic assignment, which had some issues. a) PR 57697/PR58469 Patch: http://gcc.gnu.org/ml/fortran/2013-09/msg00039.html Approval: http://gcc.gnu.org/ml/fortran/2013-09/msg00056.html b) http://gcc.gnu.org/ml/fortran/2013-09/msg00016.html c) http://gcc.gnu.org/ml/fortran/2013-09/msg00026.html d) http://gcc.gnu.org/ml/fortran/2013-09/msg00038.html Tobias Index: gcc/testsuite/ChangeLog =================================================================== --- gcc/testsuite/ChangeLog (Revision 203207) +++ gcc/testsuite/ChangeLog (Arbeitskopie) @@ -1,12 +1,11 @@ 2013-10-04 Tobias Burnus - Backport from mainline - 2013-09-25 Tobias Burnus - PR fortran/57697 PR fortran/58469 * gfortran.dg/defined_assignment_8.f90: New. * gfortran.dg/defined_assignment_9.f90: New. + * gfortran.dg/defined_assignment_10.f90: New. + * gfortran.dg/defined_assignment_11.f90: New. 2013-10-04 Marcus Shawcroft