diff options
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fortran/match.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3169f33..4c331d9 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-04-08 Diego Novillo <dnovillo@redhat.com> + + * match.c (gfc_match_arithmetic_if): Declare static. + 2005-04-08 Francois-Xavier Coudert <coudert@clipper.ens.fr> PR fortran/17229 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index f2b5311..3a0bac5 100644 --- a/gcc/fortran/match.c +++ b/gcc/fortran/match.c @@ -903,7 +903,7 @@ cleanup: * when just after having encountered a simple IF statement. This code * is really duplicate with parts of the gfc_match_if code, but this is * *much* easier. */ -match +static match gfc_match_arithmetic_if (void) { gfc_st_label *l1, *l2, *l3; |