aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2004-12-22 22:32:15 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2004-12-22 22:32:15 +0000
commit44075220296e2fe935eaf9e868229f90ab051e67 (patch)
tree3d242acfe2e7085603c880b206d1e4e4a80ccf42 /gcc
parent938802033e97eb1c384ddabf8f9f2065632d02a4 (diff)
downloadgcc-44075220296e2fe935eaf9e868229f90ab051e67.zip
gcc-44075220296e2fe935eaf9e868229f90ab051e67.tar.gz
gcc-44075220296e2fe935eaf9e868229f90ab051e67.tar.bz2
tree.h (DECL_PTA_ALIASVAR): Dead.
2004-12-22 Daniel Berlin <dberlin@dberlin.org> * tree.h (DECL_PTA_ALIASVAR): Dead. (struct tree_decl): Remove alias_var field. From-SVN: r92515
Diffstat (limited to 'gcc')
-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 aba1f60..5fe40b5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-22 Daniel Berlin <dberlin@dberlin.org>
+
+ * tree.h (DECL_PTA_ALIASVAR): Dead.
+ (struct tree_decl): Remove alias_var field.
+
2004-12-22 Nathan Sidwell <nathan@codesourcery.com>
* system.h (IN_RANGE): Restore HOST_WIDE_INT cast.
diff --git a/gcc/tree.h b/gcc/tree.h
index 7a78bbf..273691d 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -2256,9 +2256,6 @@ struct tree_binfo GTY (())
#define DECL_POINTER_ALIAS_SET(NODE) \
(DECL_CHECK (NODE)->decl.pointer_alias_set)
-/* Used to store the alias_var for a DECL node. */
-#define DECL_PTA_ALIASVAR(NODE) \
- (DECL_CHECK (NODE)->decl.alias_var)
/* A numeric unique identifier for a LABEL_DECL. The UID allocation is
dense, unique within any one function, and may be used to index arrays.
@@ -2304,7 +2301,6 @@ enum symbol_visibility
#endif
struct function;
-union alias_var_def;
struct tree_decl GTY(())
{
struct tree_common common;
@@ -2411,7 +2407,6 @@ struct tree_decl GTY(())
tree vindex;
HOST_WIDE_INT pointer_alias_set;
- union alias_var_def *GTY ((skip(""))) alias_var;
/* Points to a structure whose details depend on the language in use. */
struct lang_decl *lang_specific;
};