Commit 5e1bdeb7 by Jerry DeLisle

re PR fortran/37498 (Incorrect array value returned - 4.3 ABI Broken)

2008-09-25  Jerry DeLisle  <jvdelisle@gcc.gnu.org

	PR fortran/37498
	* trans-io.c (build_dt): Revert previous patch..
	* ioparm.def: Delete IOPARM_dt_f2003.

From-SVN: r140683
parent e7b012c0
2008-09-25 Jerry DeLisle <jvdelisle@gcc.gnu.org
PR fortran/37498
* trans-io.c (build_dt): Revert previous patch..
* ioparm.def: Delete IOPARM_dt_f2003.
2008-09-25 Tobias Burnus <burnus@net-b.de> 2008-09-25 Tobias Burnus <burnus@net-b.de>
PR fortran/37504 PR fortran/37504
......
...@@ -93,4 +93,3 @@ IOPARM (dt, pad, 1 << 22, char1) ...@@ -93,4 +93,3 @@ IOPARM (dt, pad, 1 << 22, char1)
IOPARM (dt, round, 1 << 23, char2) IOPARM (dt, round, 1 << 23, char2)
IOPARM (dt, sign, 1 << 24, char1) IOPARM (dt, sign, 1 << 24, char1)
IOPARM (dt, u, 0, pad) IOPARM (dt, u, 0, pad)
#define IOPARM_dt_f2003 (1 << 25)
...@@ -1641,7 +1641,7 @@ build_dt (tree function, gfc_code * code) ...@@ -1641,7 +1641,7 @@ build_dt (tree function, gfc_code * code)
tree tmp, var; tree tmp, var;
gfc_expr *nmlname; gfc_expr *nmlname;
gfc_namelist *nml; gfc_namelist *nml;
unsigned int mask = IOPARM_dt_f2003; unsigned int mask = 0;
gfc_start_block (&block); gfc_start_block (&block);
gfc_init_block (&post_block); gfc_init_block (&post_block);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment