diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/varasm.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd19840..3dc660e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-18 Daniel Jacobowitz <dan@codesourcery.com> + + * varasm.c (assemble_start_function): Remove reset of in_section. + 2005-04-18 James A. Morrison <phython@gcc.gnu.org> PR tree-optimization/21085 diff --git a/gcc/varasm.c b/gcc/varasm.c index f2a361d..a6e67e4 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1297,7 +1297,6 @@ assemble_start_function (tree decl, const char *fnname) } last_text_section = no_section; - in_section = no_section; resolve_unique_section (decl, 0, flag_function_sections); /* Switch to the correct text section for the start of the function. */ |