aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2003-01-11 00:47:36 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-01-11 00:47:36 +0000
commit63af3bd1a2b1193444d01766cec9092cfbe4370a (patch)
treede451839e856e194cd16a5edc40602510e10af39 /gcc
parent223b87b6ac3c7a0e37bf4709242a0dbdd6ac1eb2 (diff)
downloadgcc-63af3bd1a2b1193444d01766cec9092cfbe4370a.zip
gcc-63af3bd1a2b1193444d01766cec9092cfbe4370a.tar.gz
gcc-63af3bd1a2b1193444d01766cec9092cfbe4370a.tar.bz2
varasm.c (struct constant_descriptor_rtx): Remove unused `label' field.
* varasm.c (struct constant_descriptor_rtx): Remove unused `label' field. From-SVN: r61182
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/varasm.c5
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7d0ca38..222a552 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2003-01-10 Geoffrey Keating <geoffk@apple.com>
+ * varasm.c (struct constant_descriptor_rtx): Remove unused
+ `label' field.
+
* toplev.c (documented_lang_options): Document -Winvalid-pch.
2003-01-10 Richard Henderson <rth@redhat.com>
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 673030d..9fc92c4 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -1,6 +1,6 @@
/* Output variables, constants and external declarations, for GNU compiler.
Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
- 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GCC.
@@ -2832,9 +2832,6 @@ struct constant_descriptor_rtx GTY(())
/* More constant_descriptors with the same hash code. */
struct constant_descriptor_rtx *next;
- /* The label of the constant. */
- const char *label;
-
/* A MEM for the constant. */
rtx rtl;