diff options
author | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-11 00:47:36 +0000 |
---|---|---|
committer | geoffk <geoffk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-11 00:47:36 +0000 |
commit | 94c331ecd8399267f7990393ee5faccd479aa7fb (patch) | |
tree | de451839e856e194cd16a5edc40602510e10af39 /gcc/varasm.c | |
parent | 6674394eda2b9bee4e1941de5d6f1b605b54ed21 (diff) | |
download | gcc-94c331ecd8399267f7990393ee5faccd479aa7fb.tar.gz |
* varasm.c (struct constant_descriptor_rtx): Remove unused
`label' field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61182 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 673030d5527..9fc92c4d795 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; |