Commit 1ba6516f by Kai Tietz Committed by Kai Tietz

winnt.c (i386_pe_start_function): Make sure to switch back to function's section.

2011-01-09  Kai Tietz  <kai.tietz@onevision.com>

        * config/i386/winnt.c (i386_pe_start_function): Make sure
        to switch back to function's section.

From-SVN: r168615
parent 32df61ae
2011-01-09 Kai Tietz <kai.tietz@onevision.com>
* config/i386/winnt.c (i386_pe_start_function): Make sure
to switch back to function's section.
2011-01-09 Iain Sandoe <iains@gcc.gnu.org>
PR gcc/46902
......
......@@ -1101,6 +1101,9 @@ i386_pe_start_function (FILE *f, const char *name, tree decl)
i386_pe_maybe_record_exported_symbol (decl, name, 0);
if (write_symbols != SDB_DEBUG)
i386_pe_declare_function_type (f, name, TREE_PUBLIC (decl));
/* In case section was altered by debugging output. */
if (decl != NULL_TREE)
switch_to_section (function_section (decl));
ASM_OUTPUT_FUNCTION_LABEL (f, name, decl);
}
......
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