Commit a572c454 by Ian Lance Taylor Committed by Ian Lance Taylor

go-gcc.cc (immutable_struct_set_init): Always call resolve_unique_section.

	* go-gcc.cc (immutable_struct_set_init): Always call
	resolve_unique_section.

From-SVN: r201446
parent aa7e089f
2013-08-02 Ian Lance Taylor <iant@google.com>
* go-gcc.cc (immutable_struct_set_init): Always call
resolve_unique_section.
2013-07-24 Ian Lance Taylor <iant@google.com>
* go-gcc.cc (Gcc_backend::non_zero_size_type): If a struct has a
......
......@@ -1521,10 +1521,11 @@ Gcc_backend::immutable_struct_set_init(Bvariable* var, const std::string&,
TREE_PUBLIC(decl) = 1;
}
else
{
make_decl_one_only(decl, DECL_ASSEMBLER_NAME(decl));
resolve_unique_section(decl, 1, 0);
}
make_decl_one_only(decl, DECL_ASSEMBLER_NAME(decl));
// These variables are often unneeded in the final program, so put
// them in their own section so that linker GC can discard them.
resolve_unique_section(decl, 1, 1);
rest_of_decl_compilation(decl, 1, 0);
}
......
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