Re: [PATCH] rs6000.c missing target hook

2012-05-22 Thread David Edelsohn
On Tue, May 22, 2012 at 1:31 PM, Mike Stump wrote: >>   fprintf (asm_out_file, "\t.ref %s\n", >> -          TARGET_STRIP_NAME_ENCODING (frame_table_label)); >> +          (* targetm.strip_name_encoding) (frame_table_label)); > > Any reason to not remove (* and )? I wanted to be consistent with t

Re: [PATCH] rs6000.c missing target hook

2012-05-22 Thread Mike Stump
On May 22, 2012, at 7:15 AM, David Edelsohn wrote: > * config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref): Use > strip_name_encoding target hook. > > Index: rs6000.c > === > --- rs6000.c(revision 187756) > +++ rs6000.c

[PATCH] rs6000.c missing target hook

2012-05-22 Thread David Edelsohn
During one of the target hook conversions, rs6000_aix_asm_output_dwarf_table_ref() retained a use of TARGET_STRIP_NAME_ENCODING macro instead of the target hook, which broke when Alan cleaned up rs6000.c. Fixed thusly. - David * config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref): Use