Re: Don't use create_tmp_var for static vars

2014-06-27 Thread Richard Biener
On Fri, Jun 27, 2014 at 10:55 AM, Tobias Burnus wrote: > Bernd Schmidt wrote: >> I discovered that create_tmp_var is used in the gfortran frontend to >> create static variables. IMO the function is not intended to do this, >> and it causes problems for a modification I need to make to it which >>

Re: Don't use create_tmp_var for static vars

2014-06-27 Thread Tobias Burnus
Bernd Schmidt wrote: > I discovered that create_tmp_var is used in the gfortran frontend to > create static variables. IMO the function is not intended to do this, > and it causes problems for a modification I need to make to it which > assumes that it only creates local variables. So I've made a p

Don't use create_tmp_var for static vars

2014-06-27 Thread Bernd Schmidt
I discovered that create_tmp_var is used in the gfortran frontend to create static variables. IMO the function is not intended to do this, and it causes problems for a modification I need to make to it which assumes that it only creates local variables. So I've made a patch to make fortran dire