hpux.h (CTORS_SECTION_ASM_OP): New.
* config/ia64/hpux.h (CTORS_SECTION_ASM_OP): New. (DTORS_SECTION_ASM_OP): Ditto. (READONLY_DATA_SECTION_ASM_OP): Moved. (DATA_SECTION_ASM_OP): New. (SDATA_SECTION_ASM_OP): New. (BSS_SECTION_ASM_OP): New. (SBSS_SECTION_ASM_OP): New. (TEXT_SECTION_ASM_OP): New. From-SVN: r57304
This commit is contained in:
parent
9cd10576c5
commit
b64ddb88fe
2 changed files with 35 additions and 4 deletions
|
@ -1,3 +1,14 @@
|
|||
2002-09-19 Steve Ellcey <sje@cup.hp.com>
|
||||
|
||||
* config/ia64/hpux.h (CTORS_SECTION_ASM_OP): New.
|
||||
(DTORS_SECTION_ASM_OP): Ditto.
|
||||
(READONLY_DATA_SECTION_ASM_OP): Moved.
|
||||
(DATA_SECTION_ASM_OP): New.
|
||||
(SDATA_SECTION_ASM_OP): New.
|
||||
(BSS_SECTION_ASM_OP): New.
|
||||
(SBSS_SECTION_ASM_OP): New.
|
||||
(TEXT_SECTION_ASM_OP): New.
|
||||
|
||||
2002-09-19 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* config/fp-bit.c: Follow spelling conventions.
|
||||
|
|
|
@ -88,10 +88,6 @@ do { \
|
|||
|
||||
#define JMP_BUF_SIZE (8 * 76)
|
||||
|
||||
#undef READONLY_DATA_SECTION_ASM_OP
|
||||
#define READONLY_DATA_SECTION_ASM_OP \
|
||||
"\t.section\t.rodata,\t\"a\",\t\"progbits\""
|
||||
|
||||
#undef BITS_BIG_ENDIAN
|
||||
#define BITS_BIG_ENDIAN 1
|
||||
|
||||
|
@ -138,3 +134,27 @@ do { \
|
|||
/* Put out the needed function declarations at the end. */
|
||||
|
||||
#define ASM_FILE_END(STREAM) ia64_hpux_asm_file_end(STREAM)
|
||||
|
||||
#undef CTORS_SECTION_ASM_OP
|
||||
#define CTORS_SECTION_ASM_OP "\t.section\t.init_array,\t\"aw\",\"init_array\""
|
||||
|
||||
#undef DTORS_SECTION_ASM_OP
|
||||
#define DTORS_SECTION_ASM_OP "\t.section\t.fini_array,\t\"aw\",\"fini_array\""
|
||||
|
||||
#undef READONLY_DATA_SECTION_ASM_OP
|
||||
#define READONLY_DATA_SECTION_ASM_OP "\t.section\t.rodata,\t\"a\",\t\"progbits\""
|
||||
|
||||
#undef DATA_SECTION_ASM_OP
|
||||
#define DATA_SECTION_ASM_OP "\t.section\t.data,\t\"aw\",\t\"progbits\""
|
||||
|
||||
#undef SDATA_SECTION_ASM_OP
|
||||
#define SDATA_SECTION_ASM_OP "\t.section\t.sdata,\t\"asw\",\t\"progbits\""
|
||||
|
||||
#undef BSS_SECTION_ASM_OP
|
||||
#define BSS_SECTION_ASM_OP "\t.section\t.bss,\t\"aw\",\t\"nobits\""
|
||||
|
||||
#undef SBSS_SECTION_ASM_OP
|
||||
#define SBSS_SECTION_ASM_OP "\t.section\t.sbss,\t\"asw\",\t\"nobits\""
|
||||
|
||||
#undef TEXT_SECTION_ASM_OP
|
||||
#define TEXT_SECTION_ASM_OP "\t.section\t.text,\t\"ax\",\t\"progbits\""
|
||||
|
|
Loading…
Add table
Reference in a new issue