------- Comment #8 from burnus at gcc dot gnu dot org 2008-09-12 20:49 -------
The problem is this harmless looking variable in the program (from
-fdump-tree-original):
struct __st_parameter_dt dt_parm.2;
This struct matches st_parameter_dt in libgfortran/io/io.h. If one compares 4.3
with 4.4 one finds:
@@ -329,0 +384,9 @@ typedef struct st_parameter_dt
+ GFC_IO_INT *id;
+ GFC_IO_INT pos;
+ CHARACTER1 (asynchronous);
+ CHARACTER2 (blank);
+ CHARACTER1 (decimal);
+ CHARACTER2 (delim);
+ CHARACTER1 (pad);
+ CHARACTER2 (round);
+ CHARACTER1 (sign);
@@ -344 +407,2 @@ typedef struct st_parameter_dt
- enum {SIGN_S, SIGN_SS, SIGN_SP} sign_status;
+ unit_pad pad_status;
+ enum { SIGN_S, SIGN_SS, SIGN_SP } sign_status;
@@ -356,0 +421,2 @@ typedef struct st_parameter_dt
+ unit_decimal decimal_status;
+ unit_delim delim_status;
Ideas how to make this compatible? If not, shall we bump the version number
(and include the rank change ;-) ?
--
burnus at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jvdelisle at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37498