diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-02-16 21:09:43 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-02-16 21:09:43 +0000 |
commit | 6d9a331c877fef77082bc62757aa735424e16615 (patch) | |
tree | e2f83cff6389576434c58893ca2921e250468ca1 /gnu/egcs | |
parent | ca464888ff0bb2738c5ff4f1e6025280e0ea6d19 (diff) |
place ro data into .rodata and not .text (now that it's handled special. 10x to dale); espie@ ok
Diffstat (limited to 'gnu/egcs')
-rw-r--r-- | gnu/egcs/gcc/config/pa/openbsd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/config/pa/openbsd.h b/gnu/egcs/gcc/config/pa/openbsd.h index 9dfc1cbaebc..0b2c0059eef 100644 --- a/gnu/egcs/gcc/config/pa/openbsd.h +++ b/gnu/egcs/gcc/config/pa/openbsd.h @@ -146,7 +146,7 @@ do { \ #undef TEXT_SECTION_ASM_OP #define TEXT_SECTION_ASM_OP "\t.text" #undef READONLY_DATA_ASM_OP -#define READONLY_DATA_ASM_OP "\t.text" +#define READONLY_DATA_ASM_OP "\t.section\t.rodata" #undef DATA_SECTION_ASM_OP #define DATA_SECTION_ASM_OP "\t.data" #undef BSS_SECTION_ASM_OP |