diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-17 22:57:04 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-17 22:57:04 +0000 |
commit | e3951cfdf3d5b36dd57397fe579ef46b098464b7 (patch) | |
tree | 123927bfb812fd36f881f54a758390c31565d62c /gcc/cselib.h | |
parent | 99013338a81eb3bf5ea317e1c21ab63e934145bf (diff) | |
download | gcc-e3951cfdf3d5b36dd57397fe579ef46b098464b7.tar.gz |
* cselib.c (struct cselib_val_struct): Make val_rtx its
own field, remove the union that contained it.
* cselib.c: Update accordingly where necessary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cselib.h')
-rw-r--r-- | gcc/cselib.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gcc/cselib.h b/gcc/cselib.h index 72094439956..47bcb994751 100644 --- a/gcc/cselib.h +++ b/gcc/cselib.h @@ -24,17 +24,14 @@ typedef struct cselib_val_struct GTY(()) { /* The hash value. */ unsigned int value; - union cselib_val_u - { - /* A VALUE rtx that points back to this structure. */ - rtx GTY ((tag ("1"))) val_rtx; - /* Used to keep a list of free cselib_val structures. */ - struct cselib_val_struct * GTY ((skip)) next_free; - } GTY ((desc ("1"))) u; + + /* A VALUE rtx that points back to this structure. */ + rtx val_rtx; /* All rtl expressions that hold this value at the current time during a scan. */ struct elt_loc_list *locs; + /* If this value is used as an address, points to a list of values that use it as an address in a MEM. */ struct elt_list *addr_list; |