diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-03-18 12:46:20 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-03-18 12:46:20 -0800 |
commit | 445ae75f1252e38ebb5958550ae673617147878a (patch) | |
tree | 08d80bc1613ec735b3b856a4d245e8e36fc57207 /gcc | |
parent | 2d879387e284d5a11d58b6c6b5c65db7904208f0 (diff) | |
download | gcc-445ae75f1252e38ebb5958550ae673617147878a.zip gcc-445ae75f1252e38ebb5958550ae673617147878a.tar.gz gcc-445ae75f1252e38ebb5958550ae673617147878a.tar.bz2 |
(SELECT_RTX_SECTION): Delete.
From-SVN: r6814
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sol2.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/config/sparc/sol2.h b/gcc/config/sparc/sol2.h index 0617ed58..4625f62 100644 --- a/gcc/config/sparc/sol2.h +++ b/gcc/config/sparc/sol2.h @@ -85,16 +85,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define CTORS_SECTION_ASM_OP "\t.section\t\".ctors\",#alloc,#execinstr\n" #define DTORS_SECTION_ASM_OP "\t.section\t\".dtors\",#alloc,#execinstr\n" -/* Must use data section for relocatable constants when pic. */ -#undef SELECT_RTX_SECTION -#define SELECT_RTX_SECTION(MODE,RTX) \ -{ \ - if (flag_pic && symbolic_operand (RTX)) \ - data_section (); \ - else \ - const_section (); \ -} - /* The Solaris 2 assembler uses .skip, not .zero, so put this back. */ #undef ASM_OUTPUT_SKIP #define ASM_OUTPUT_SKIP(FILE,SIZE) \ |