diff options
author | Daniel Jacobowitz <dan@codesourcery.com> | 2005-04-19 03:49:17 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@gcc.gnu.org> | 2005-04-19 03:49:17 +0000 |
commit | 0d620686ce0e753b29f54fd19fc901a78b09949c (patch) | |
tree | 725823fdb0e9aab62a2a1166747779efadc7ee04 /gcc | |
parent | a3885f54770e771ad67808dbaa63704cc42315a6 (diff) | |
download | gcc-0d620686ce0e753b29f54fd19fc901a78b09949c.zip gcc-0d620686ce0e753b29f54fd19fc901a78b09949c.tar.gz gcc-0d620686ce0e753b29f54fd19fc901a78b09949c.tar.bz2 |
* varasm.c (assemble_start_function): Remove reset of in_section.
From-SVN: r98366
Diffstat (limited to 'gcc')
-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. */ |