aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2003-02-10 17:46:07 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2003-02-10 17:46:07 +0000
commit57116c342fbd38bd1e49dbc950f108df6349b4bf (patch)
treec0ca81ddc2625b5e97a64e095ef12f02d2747226
parent7a93f73934d22d5546cb016928c48e97f71b033f (diff)
downloadgcc-57116c342fbd38bd1e49dbc950f108df6349b4bf.zip
gcc-57116c342fbd38bd1e49dbc950f108df6349b4bf.tar.gz
gcc-57116c342fbd38bd1e49dbc950f108df6349b4bf.tar.bz2
tree.h (struct tree_decl): Remove unused live_range_rtl field.
* tree.h (struct tree_decl): Remove unused live_range_rtl field. (DECL_LIVE_RANGE_RTL): Remove. From-SVN: r62642
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree.h5
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 36e7f00..4f98473 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-09 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * tree.h (struct tree_decl): Remove unused live_range_rtl field.
+ (DECL_LIVE_RANGE_RTL): Remove.
+
2003-02-10 Nick Clifton <nickc@redhat.com>
* config/arm/aof.h, config/arm/aout.h, config/arm/arm-modes.def,
diff --git a/gcc/tree.h b/gcc/tree.h
index 2d4c741..45238fd 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -1520,10 +1520,6 @@ struct tree_type GTY(())
/* The DECL_RTL for NODE, if it is set, or NULL, if it is not set. */
#define DECL_RTL_IF_SET(NODE) (DECL_RTL_SET_P (NODE) ? DECL_RTL (NODE) : NULL)
-/* Holds an INSN_LIST of all of the live ranges in which the variable
- has been moved to a possibly different register. */
-#define DECL_LIVE_RANGE_RTL(NODE) (DECL_CHECK (NODE)->decl.live_range_rtl)
-
/* For PARM_DECL, holds an RTL for the stack slot or register
where the data was actually passed. */
#define DECL_INCOMING_RTL(NODE) (PARM_DECL_CHECK (NODE)->decl.u2.r)
@@ -1864,7 +1860,6 @@ struct tree_decl GTY(())
tree section_name;
tree attributes;
rtx rtl; /* RTL representation for object. */
- rtx live_range_rtl;
/* In FUNCTION_DECL, if it is inline, holds the saved insn chain.
In FIELD_DECL, is DECL_FIELD_BIT_OFFSET.