[1/6][PATCH] Fix PE-COFF bug in orphan section alignment handling.
Alan Modra
amodra@gmail.com
Sat Feb 26 09:14:00 GMT 2011
On Sat, Feb 26, 2011 at 12:45:16AM +0000, Dave Korn wrote:
> + if (link_info.relocatable)
> + os->bfd_section->alignment_power = os->section_alignment
> + = s->alignment_power;
Style and formatting issues here. Better written as
if (link_info.relocatable)
{
os->section_alignment = s->alignment_power;
os->bfd_section->alignment_power = s->alignment_power;
}
--
Alan Modra
Australia Development Lab, IBM
More information about the Binutils
mailing list