From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28136 invoked by alias); 10 May 2015 20:43:04 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 28118 invoked by uid 89); 10 May 2015 20:43:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-ob0-f180.google.com Received: from mail-ob0-f180.google.com (HELO mail-ob0-f180.google.com) (209.85.214.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 10 May 2015 20:43:02 +0000 Received: by obcus9 with SMTP id us9so57632982obc.2; Sun, 10 May 2015 13:43:00 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.202.223.131 with SMTP id w125mr5411206oig.108.1431290580350; Sun, 10 May 2015 13:43:00 -0700 (PDT) Received: by 10.76.54.14 with HTTP; Sun, 10 May 2015 13:43:00 -0700 (PDT) In-Reply-To: <554F640D.5020506@sfr.fr> References: <553B7BA4.6040103@netcologne.de> <553BD925.3050401@sfr.fr> <553E83B4.8020005@netcologne.de> <5542722E.3030307@sfr.fr> <5543EA34.6060304@sfr.fr> <5546872F.7040507@netcologne.de> <554F640D.5020506@sfr.fr> Date: Sun, 10 May 2015 20:43:00 -0000 Message-ID: Subject: Re: [Patch, Fortran] Simplify lbound From: "H.J. Lu" To: Mikael Morin Cc: Thomas Koenig , "fortran@gcc.gnu.org" , gcc-patches Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg00868.txt.bz2 On Sun, May 10, 2015 at 6:58 AM, Mikael Morin wrote: > Le 03/05/2015 22:38, Thomas Koenig a =C3=A9crit : >> Hi Mikael, >> >> Looks good. >> >> In general, it is better to restrict changes to existing test cases to >> the necessary minimum that they still pass, and add new code to new >> test cases. This makes regressions easier to track. >> >> So, OK with that change. >> > Here is what I have committed. > It caused: /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:39: Error: Variable 'c1' cannot appear in the expression at (1)^M /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:42: Error: Variable 'c2' cannot appear in the expression at (1)^M /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:15: Error: Variable 'a1' cannot appear in the expression at (1)^M /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:18: Error: Variable 'a2' cannot appear in the expression at (1)^M /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:27: Error: Variable 'b1' cannot appear in the expression at (1)^M /export/gnu/import/git/sources/gcc/gcc/testsuite/gfortran.dg/inline_matmul_= 3.f90:38:30: Error: Variable 'b2' cannot appear in the expression at (1)^M FAIL: gfortran.dg/inline_matmul_3.f90 -O (test for excess errors) --=20 H.J.