diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2002-07-25 21:21:37 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-07-25 21:21:37 +0000 |
commit | e179e7d78e128c13034808a3688f04435294da92 (patch) | |
tree | bbaf2c7853ba964cf71608a50b31640b60bcc234 /gcc | |
parent | a2056183090834274394fe9d598abcfb0b63598f (diff) | |
download | gcc-e179e7d78e128c13034808a3688f04435294da92.zip gcc-e179e7d78e128c13034808a3688f04435294da92.tar.gz gcc-e179e7d78e128c13034808a3688f04435294da92.tar.bz2 |
dwarfout.c (VERSION_ASM_OP, [...]): Remove.
* dwarfout.c (VERSION_ASM_OP, DERIV_BEGIN_LABEL_FMT,
DERIV_END_LABEL_FMT): Remove.
(SL_BEGIN_LABEL_FMT, SL_END_LABEL_FMT): Move.
From-SVN: r55762
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/dwarfout.c | 22 |
2 files changed, 13 insertions, 15 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 344ba95..ada205d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2002-07-25 Neil Booth <neil@daikokuya.co.uk> + * dwarfout.c (VERSION_ASM_OP, DERIV_BEGIN_LABEL_FMT, + DERIV_END_LABEL_FMT): Remove. + (SL_BEGIN_LABEL_FMT, SL_END_LABEL_FMT): Move. + +2002-07-25 Neil Booth <neil@daikokuya.co.uk> + * objc/objc-act.c (UTAG_STATICS, UTAG_PROTOCOL_LIST, USERTYPE): Remove. diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 0a41dbb..1f7817a 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -935,9 +935,6 @@ static void retry_incomplete_types PARAMS ((void)); #ifndef FILE_ASM_OP #define FILE_ASM_OP "\t.file\t" #endif -#ifndef VERSION_ASM_OP -#define VERSION_ASM_OP "\t.version\t" -#endif #ifndef SET_ASM_OP #define SET_ASM_OP "\t.set\t" #endif @@ -1141,18 +1138,6 @@ static void retry_incomplete_types PARAMS ((void)); #ifndef BOUND_END_LABEL_FMT #define BOUND_END_LABEL_FMT "*.L_b%u_%u_%c_e" #endif -#ifndef DERIV_BEGIN_LABEL_FMT -#define DERIV_BEGIN_LABEL_FMT "*.L_d%u" -#endif -#ifndef DERIV_END_LABEL_FMT -#define DERIV_END_LABEL_FMT "*.L_d%u_e" -#endif -#ifndef SL_BEGIN_LABEL_FMT -#define SL_BEGIN_LABEL_FMT "*.L_sl%u" -#endif -#ifndef SL_END_LABEL_FMT -#define SL_END_LABEL_FMT "*.L_sl%u_e" -#endif #ifndef BODY_BEGIN_LABEL_FMT #define BODY_BEGIN_LABEL_FMT "*.L_b%u" #endif @@ -3321,6 +3306,13 @@ member_attribute (context) } #if 0 +#ifndef SL_BEGIN_LABEL_FMT +#define SL_BEGIN_LABEL_FMT "*.L_sl%u" +#endif +#ifndef SL_END_LABEL_FMT +#define SL_END_LABEL_FMT "*.L_sl%u_e" +#endif + static inline void string_length_attribute (upper_bound) tree upper_bound; |