Hi Steve,
On Sun, Feb 03, 2019 at 05:20:34PM +0100, Thomas Koenig wrote:
+ if (allocatable)
+ {
+ not_prev_allocated = gfc_create_var (logical_type_node,
+ "not_prev_allocated");
Can't remember semantics of gfc_create_var. Can not_prev_allocated
conflict with a user defined variable of the same name? If yes,
you may want to add leading underscore. If not, then OK to
commit.
Committed as r268502. I will wait for a bit for the other open
branches.
Regarding gfc_create_var: This will create a variable name like
not_prev_allocated.3 (note the dot), so this is not a variable
name that can be generated from C or Fortran.
Regards
Thomas