https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
Thomas Koenig changed:
What|Removed |Added
Status|UNCONFIRMED |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
--- Comment #5 from Thomas Koenig ---
Author: tkoenig
Date: Sat May 16 12:33:01 2015
New Revision: 223238
URL: https://gcc.gnu.org/viewcvs?rev=223238&root=gcc&view=rev
Log:
2015-05-16 Thomas Koenig
PR fortran/66113
* expr.c (
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
--- Comment #4 from Thomas Koenig ---
The reason is that I want to make creation of temporary
variables for arrays more sane.
Currently, temporary arrays are handled using an allocatable array
variable. This obviously does not work if -fno-reall
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
Mikael Morin changed:
What|Removed |Added
CC||mikael at gcc dot gnu.org
--- Comment #3
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
--- Comment #2 from Thomas Koenig ---
(In reply to Dominique d'Humieres from comment #1)
> Is not the code invalid?
I don't think it is invalid.
This works as expected:
program main
integer :: n
n = 3
block
block
real, di
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66113
--- Comment #1 from Dominique d'Humieres ---
Is not the code invalid?