Commit 83488369 by Richard Kenner

(assemble_end_function): Switch back to function section after

outputting constant pool.

From-SVN: r14184
parent 63d9b81c
......@@ -1043,7 +1043,10 @@ assemble_end_function (decl, fnname)
ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
#endif
if (! CONSTANT_POOL_BEFORE_FUNCTION)
output_constant_pool (fnname, decl);
{
output_constant_pool (fnname, decl);
function_section (decl); /* need to switch back */
}
/* Output any constants which should appear after the function. */
output_after_function_constants ();
......
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