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
+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
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);
}