From cfe79ecf836687ea3a02cacd62d92773d0831b6d Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 3 Dec 2003 23:33:48 +0000 Subject: [PATCH] c-parse.in (c_in_iteration_stmt, [...]): Move from here... 2003-12-03 Eric Christopher * c-parse.in (c_in_iteration_stmt, c_in_case_stmt): Move from here... * c-tree.h: to here. From-SVN: r74253 --- gcc/ChangeLog | 6 ++++++ gcc/c-parse.in | 3 --- gcc/c-tree.h | 3 +++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d951c37b83f7..ceb414da1e4a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-12-03 Eric Christopher + + * c-parse.in (c_in_iteration_stmt, c_in_case_stmt): Move + from here... + * c-tree.h: to here. + 2003-12-03 Jan Hubicka PR optimization/12324 diff --git a/gcc/c-parse.in b/gcc/c-parse.in index 9a18d3407372..320c781b2f8a 100644 --- a/gcc/c-parse.in +++ b/gcc/c-parse.in @@ -257,9 +257,6 @@ do { \ static int stmt_count; static int compstmt_count; -extern int c_in_iteration_stmt; -extern int c_in_case_stmt; - /* Input location of the end of the body of last simple_if; used by the stmt-rule immediately after simple_if returns. */ static location_t if_stmt_locus; diff --git a/gcc/c-tree.h b/gcc/c-tree.h index f04e7b4edfab..4849ab2dd555 100644 --- a/gcc/c-tree.h +++ b/gcc/c-tree.h @@ -176,6 +176,9 @@ extern void c_parse_init (void); extern void gen_aux_info_record (tree, int, int, int); /* in c-decl.c */ +extern int c_in_iteration_stmt; +extern int c_in_case_stmt; + extern int global_bindings_p (void); extern tree getdecls (void); extern void pushlevel (int);