Commit 6410fb81 by Richard Sandiford Committed by Richard Sandiford

* varasm.c (assemble_variable): Fix setting of DECL_IN_TEXT_SECTION.

From-SVN: r111805
parent 1d3dbd99
2006-03-07 Richard Sandiford <richard@codesourcery.com>
* varasm.c (assemble_variable): Fix setting of DECL_IN_TEXT_SECTION.
2006-03-07 Richard Sandiford <richard@codesourcery.com>
* hooks.c (hook_bool_mode_rtx_true): New function.
* hooks.h (hook_bool_mode_rtx_true): Declare.
* toplev.c (compile_file): Call output_shared_constant_pool.
......
......@@ -1818,7 +1818,7 @@ assemble_variable (tree decl, int top_level ATTRIBUTE_UNUSED,
output_addressed_constants (DECL_INITIAL (decl));
/* dbxout.c needs to know this. */
if (in_section && (in_section->common.flags & SECTION_CODE) != 0)
if (sect && (sect->common.flags & SECTION_CODE) != 0)
DECL_IN_TEXT_SECTION (decl) = 1;
/* If the decl is part of an object_block, make sure that the 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