[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-21 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 kargl at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution|--

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-21 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 --- Comment #6 from kargl at gcc dot gnu.org --- Author: kargl Date: Mon Sep 21 18:24:52 2015 New Revision: 227982 URL: https://gcc.gnu.org/viewcvs?rev=227982&root=gcc&view=rev Log: 2015-09-21 Steven G. Kargl PR fortran/67615

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-21 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 --- Comment #5 from kargl at gcc dot gnu.org --- Author: kargl Date: Mon Sep 21 18:09:13 2015 New Revision: 227981 URL: https://gcc.gnu.org/viewcvs?rev=227981&root=gcc&view=rev Log: 2015-09-21 Steven G. Kargl PR fortran/67615

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-18 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 --- Comment #4 from kargl at gcc dot gnu.org --- (In reply to kargl from comment #3) > This patch to resolve.c catches the problem. Watch for > cut-n-paste corruption of tabs. > > @@ -10377,12 +10381,11 @@ gfc_resolve_code (gfc_code *code, gfc_n

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-18 Thread kargl at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 kargl at gcc dot gnu.org changed: What|Removed |Added CC||kargl at gcc dot gnu.org --- C

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-17 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/67615] ICE on using arithmetic if with array instead of scalar

2015-09-17 Thread gerhard.steinmetz.fort...@t-online.de
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67615 --- Comment #1 from Gerhard Steinmetz --- With an array constructor : $ cat z6.f90 program p if ( [1] ) 1, 2, 3 if ( [1, -1] ) 1, 2, 3 if ( [real :: 1, -1] ) 1, 2, 3 1 stop 1 2 stop 2 3 stop 3 end $ gfortran -g -O0 -Wall -fcheck=