Commit 835d64ab by Francois-Xavier Coudert Committed by François-Xavier Coudert

match.c (match_arithmetic_if): Remove gfc_ prefix and correct comment according…

match.c (match_arithmetic_if): Remove gfc_ prefix and correct comment according to GNU coding style.

	* match.c (match_arithmetic_if): Remove gfc_ prefix and correct
	comment according to GNU coding style.

From-SVN: r97890
parent 17153653
2005-04-09 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* match.c (match_arithmetic_if): Remove gfc_ prefix and correct
comment according to GNU coding style.
2005-04-08 Diego Novillo <dnovillo@redhat.com> 2005-04-08 Diego Novillo <dnovillo@redhat.com>
* match.c (gfc_match_arithmetic_if): Declare static. * match.c (gfc_match_arithmetic_if): Declare static.
......
...@@ -900,11 +900,11 @@ cleanup: ...@@ -900,11 +900,11 @@ cleanup:
/* We try to match an easy arithmetic IF statement. This only happens /* We try to match an easy arithmetic IF statement. This only happens
* when just after having encountered a simple IF statement. This code 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 is really duplicate with parts of the gfc_match_if code, but this is
* *much* easier. */ *much* easier. */
static match static match
gfc_match_arithmetic_if (void) match_arithmetic_if (void)
{ {
gfc_st_label *l1, *l2, *l3; gfc_st_label *l1, *l2, *l3;
gfc_expr *expr; gfc_expr *expr;
...@@ -1069,7 +1069,7 @@ gfc_match_if (gfc_statement * if_type) ...@@ -1069,7 +1069,7 @@ gfc_match_if (gfc_statement * if_type)
match ("exit", gfc_match_exit, ST_EXIT) match ("exit", gfc_match_exit, ST_EXIT)
match ("forall", match_simple_forall, ST_FORALL) match ("forall", match_simple_forall, ST_FORALL)
match ("go to", gfc_match_goto, ST_GOTO) match ("go to", gfc_match_goto, ST_GOTO)
match ("if", gfc_match_arithmetic_if, ST_ARITHMETIC_IF) match ("if", match_arithmetic_if, ST_ARITHMETIC_IF)
match ("inquire", gfc_match_inquire, ST_INQUIRE) match ("inquire", gfc_match_inquire, ST_INQUIRE)
match ("nullify", gfc_match_nullify, ST_NULLIFY) match ("nullify", gfc_match_nullify, ST_NULLIFY)
match ("open", gfc_match_open, ST_OPEN) match ("open", gfc_match_open, ST_OPEN)
......
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