On Fri, Jul 24, 2015 at 10:37:00PM -0400, tbsaunde+...@tbsaunde.org wrote: > --- a/gcc/config/pa/pa.c > +++ b/gcc/config/pa/pa.c > @@ -9761,6 +9761,18 @@ pa_reloc_rw_mask (void) > return 3; > } > > +/* Assemble a lable. */
Typo. > +void > +pa_output_label (FILE *f, const char *label) > +{ > + assemble_name (f, label); > + if (TARGET_GAS) > + fputs (":\n", f); > + else > + fputc ('\n', (f)); You forgot to remove the extra parens here :-) If so many targets use default_assemble_label, can you make it an actual default instead of defining it everywhere? Segher