diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-06 20:43:46 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-08-06 20:43:46 +0000 |
commit | 656811e28ac4184cc3fab552f08d4aafcbcadb04 (patch) | |
tree | bf3aa404ac73f3acdac6a13e4faf3f9142d78ea6 /gcc | |
parent | 882c61717ac42ced34f1cadcb3bf50f9ccbbe8a3 (diff) | |
download | gcc-656811e28ac4184cc3fab552f08d4aafcbcadb04.tar.gz |
* dwarf2out.c: Remove unused macros.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56079 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dwarf2out.c | 17 |
2 files changed, 4 insertions, 17 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f833f2a8cd3..3afdc362a13 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2002-08-06 Neil Booth <neil@daikokuya.co.uk> + * dwarf2out.c: Remove unused macros. + +2002-08-06 Neil Booth <neil@daikokuya.co.uk> + * function.c (TRAMPOLINE_ALIGNMENT): Always defined. 2002-08-06 Neil Booth <neil@daikokuya.co.uk> diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 7631dc4f862..d783d3b3a7f 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -332,11 +332,9 @@ static void def_cfa_1 PARAMS ((const char *, #define FRAME_BEGIN_LABEL "Lframe" #define CIE_AFTER_SIZE_LABEL "LSCIE" #define CIE_END_LABEL "LECIE" -#define CIE_LENGTH_LABEL "LLCIE" #define FDE_LABEL "LSFDE" #define FDE_AFTER_SIZE_LABEL "LASFDE" #define FDE_END_LABEL "LEFDE" -#define FDE_LENGTH_LABEL "LLFDE" #define LINE_NUMBER_BEGIN_LABEL "LSLT" #define LINE_NUMBER_END_LABEL "LELT" #define LN_PROLOG_AS_LABEL "LASLTP" @@ -3249,9 +3247,6 @@ limbo_die_node; /* Fixed size portion of the DWARF compilation unit header. */ #define DWARF_COMPILE_UNIT_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 3) -/* Fixed size portion of debugging line information prolog. */ -#define DWARF_LINE_PROLOG_HEADER_SIZE 5 - /* Fixed size portion of public names info. */ #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2) @@ -3753,24 +3748,12 @@ static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES]; #ifndef TEXT_END_LABEL #define TEXT_END_LABEL "Letext" #endif -#ifndef DATA_END_LABEL -#define DATA_END_LABEL "Ledata" -#endif -#ifndef BSS_END_LABEL -#define BSS_END_LABEL "Lebss" -#endif #ifndef BLOCK_BEGIN_LABEL #define BLOCK_BEGIN_LABEL "LBB" #endif #ifndef BLOCK_END_LABEL #define BLOCK_END_LABEL "LBE" #endif -#ifndef BODY_BEGIN_LABEL -#define BODY_BEGIN_LABEL "Lbb" -#endif -#ifndef BODY_END_LABEL -#define BODY_END_LABEL "Lbe" -#endif #ifndef LINE_CODE_LABEL #define LINE_CODE_LABEL "LM" #endif |