mirror of git://gcc.gnu.org/git/gcc.git
rs6000.c (rs6000_aix_asm_output_dwarf_table_ref): Use strip_name_encoding target hook.
* config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref): Use strip_name_encoding target hook. From-SVN: r187774
This commit is contained in:
parent
d931f693ce
commit
f8dc1d832e
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-05-22 David Edelsohn <dje.gcc@gmail.com>
|
||||||
|
|
||||||
|
* config/rs6000/rs6000.c (rs6000_aix_asm_output_dwarf_table_ref):
|
||||||
|
Use strip_name_encoding target hook.
|
||||||
|
|
||||||
2012-05-22 Richard Guenther <rguenther@suse.de>
|
2012-05-22 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
* tree.h (VAR_DECL_IS_VIRTUAL_OPERAND): New.
|
* tree.h (VAR_DECL_IS_VIRTUAL_OPERAND): New.
|
||||||
|
|
|
||||||
|
|
@ -18392,7 +18392,7 @@ void
|
||||||
rs6000_aix_asm_output_dwarf_table_ref (char * frame_table_label)
|
rs6000_aix_asm_output_dwarf_table_ref (char * frame_table_label)
|
||||||
{
|
{
|
||||||
fprintf (asm_out_file, "\t.ref %s\n",
|
fprintf (asm_out_file, "\t.ref %s\n",
|
||||||
TARGET_STRIP_NAME_ENCODING (frame_table_label));
|
(* targetm.strip_name_encoding) (frame_table_label));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This ties together stack memory (MEM with an alias set of frame_alias_set)
|
/* This ties together stack memory (MEM with an alias set of frame_alias_set)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue