From f55e72cef793a4064a8f6a64833fbdab3d9d0e94 Mon Sep 17 00:00:00 2001 From: Diego Novillo Date: Fri, 8 Apr 2005 18:05:38 +0000 Subject: [PATCH] * match.c (gfc_match_arithmetic_if): Declare static. From-SVN: r97846 --- gcc/fortran/ChangeLog | 4 ++++ gcc/fortran/match.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 3169f33d0fd..4c331d9ff08 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-04-08 Diego Novillo + + * match.c (gfc_match_arithmetic_if): Declare static. + 2005-04-08 Francois-Xavier Coudert PR fortran/17229 diff --git a/gcc/fortran/match.c b/gcc/fortran/match.c index f2b531165c7..3a0bac5cccd 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;