Commit 2d24f24b by Tobias Burnus Committed by Tobias Burnus

re PR fortran/31917 ([4.1 only] GFORTRAN_CONVERT_UNIT is ignored)

2007-05-14  Tobias Burnus <burnus@net-b.de>

        PR fortran/31917
        * runtime/environ.c (mark_range): Fix setting default convert unit.

From-SVN: r124787
parent b02b9b53
2007-05-17 Tobias Burnus <burnus@net-b.de>
PR fortran/31917
* runtime/environ.c (mark_range): Fix setting default convert unit.
2007-05-15 Jerry DeLisle <jvdelisle@gcc.gnu.org> 2007-05-15 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/31922 PR libfortran/31922
......
...@@ -868,14 +868,13 @@ mark_range (int unit1, int unit2) ...@@ -868,14 +868,13 @@ mark_range (int unit1, int unit2)
static int static int
do_parse (void) do_parse (void)
{ {
int tok, def; int tok;
int unit1; int unit1;
int continue_ulist; int continue_ulist;
char *start; char *start;
unit_count = 0; unit_count = 0;
def = 0;
start = p; start = p;
/* Parse the string. First, let's look for a default. */ /* Parse the string. First, let's look for a default. */
...@@ -930,6 +929,7 @@ do_parse (void) ...@@ -930,6 +929,7 @@ do_parse (void)
break; break;
case END: case END:
def = endian;
goto end; goto end;
break; break;
...@@ -946,6 +946,18 @@ do_parse (void) ...@@ -946,6 +946,18 @@ do_parse (void)
tok = next_token (); tok = next_token ();
switch (tok) switch (tok)
{ {
case NATIVE:
if (next_token () != ':')
goto error;
endian = CONVERT_NATIVE;
break;
case SWAP:
if (next_token () != ':')
goto error;
endian = CONVERT_SWAP;
break;
case LITTLE: case LITTLE:
if (next_token () != ':') if (next_token () != ':')
goto error; goto error;
......
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