tree.h (DECL_PTA_ALIASVAR): Dead.
authorDaniel Berlin <dberlin@dberlin.org>
Wed, 22 Dec 2004 22:32:15 +0000 (22:32 +0000)
committerDaniel Berlin <dberlin@gcc.gnu.org>
Wed, 22 Dec 2004 22:32:15 +0000 (22:32 +0000)
2004-12-22  Daniel Berlin  <dberlin@dberlin.org>

* tree.h (DECL_PTA_ALIASVAR): Dead.
(struct tree_decl): Remove alias_var field.

From-SVN: r92515

gcc/ChangeLog
gcc/tree.h

index aba1f60cd05d750f9861eda5c17b0e87dbbd8643..5fe40b5b60ca85cb78419cae398a1ddca99935f6 100644 (file)
@@ -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.
index 7a78bbf619048e351260d9aa76fae5e9d5bec860..273691daeffa45f9417a0145af799f14f19f4c35 100644 (file)
@@ -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;
 };