diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gimple-low.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2810628..d2e8a8f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -5,6 +5,10 @@ * cfg.c (rbi_pool): Make it static. + * gimple-low.c (lower_stmt_body): Make it static. + * tree-flow.h: Remove the corresponding prototype. Don't + declare lower_data. + 2005-03-08 Julian Brown <julian@codesourcery.com> * config/elfos.h (MAKE_DECL_ONE_ONLY): Redefined to stop DECL_WEAK diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index f3e70ee..4f814a5 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -145,7 +145,7 @@ struct tree_opt_pass pass_lower_cf = when they are changed -- if this has to be done, the lowering routine must do it explicitly. DATA is passed through the recursion. */ -void +static void lower_stmt_body (tree expr, struct lower_data *data) { tree_stmt_iterator tsi; |