Andreas Schwab wrote: > Pedro Alves writes: > >> @@ -16379,12 +16412,23 @@ valueT >> md_section_align (segT segment ATTRIBUTE_UNUSED, >> valueT size) >> { >> -#ifdef OBJ_ELF >> - return size; >> -#else >> - /* Round all sects to multiple of 4. */ >> - return (size + 3) & ~3; >> +#if (defined (OBJ_AOUT) || defined (OBJ_MAYBE_AOUT)) >> + if (OUTPUT_FLAVOR == bfd_target_aout_flavour) >> + { >> + printf ("OUTPUT_FLAVOR == bfd_target_aout_flavour\n"); > > Leftover debug output? > Ooops, thanks for noticing. Updated patch for gas attached. Cheers, Pedro Alves