diff options
author | Oleg Endo <olegendo@gcc.gnu.org> | 2016-05-31 15:57:15 +0000 |
---|---|---|
committer | Oleg Endo <olegendo@gcc.gnu.org> | 2016-05-31 15:57:15 +0000 |
commit | 1ac1bb0cccdba65e0fc1c4f28e92d1fb2f593ac2 (patch) | |
tree | 0746effc16291a5e63d1c40910dc7391931b5c72 /gcc | |
parent | 86f57bd55c2093b814c00e3dee33d89711d6fbda (diff) | |
download | gcc-1ac1bb0cccdba65e0fc1c4f28e92d1fb2f593ac2.zip gcc-1ac1bb0cccdba65e0fc1c4f28e92d1fb2f593ac2.tar.gz gcc-1ac1bb0cccdba65e0fc1c4f28e92d1fb2f593ac2.tar.bz2 |
sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the default implementation.
gcc/
* config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the
default implementation.
From-SVN: r236930
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sh/sh.h | 9 |
2 files changed, 5 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 984e180..faaa3cf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-05-31 Oleg Endo <olegendo@gcc.gnu.org> + + * config/sh/sh.h (ASM_OUTPUT_SYMBOL_REF): Remove macro and use the + default implementation. + 2016-05-31 Nathan Sidwell <nathan@acm.org> * dwarf2out.c (cur_line_info_table): Add GTY marker. diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index d724bd2..0403616 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1718,15 +1718,6 @@ extern bool current_function_interrupt; ? (24) \ : (unsigned) -1) -/* This is how to output a reference to a symbol_ref. On SH5, - references to non-code symbols must be preceded by `datalabel'. */ -#define ASM_OUTPUT_SYMBOL_REF(FILE,SYM) \ - do \ - { \ - assemble_name ((FILE), XSTR ((SYM), 0)); \ - } \ - while (0) - /* This is how to output an assembler line that says to advance the location counter to a multiple of 2**LOG bytes. */ |