diff options
author | Richard Henderson <rth@gcc.gnu.org> | 1999-10-13 10:09:18 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-13 10:09:18 -0700 |
commit | 005537dfed601a7ec39b4d40f9d0e3bc954f167f (patch) | |
tree | 618d754ad605b42a6cdca53980a97a361d152aa9 /gcc/rtl.h | |
parent | 1f1479dc91216e63870c59ad48fdbb0b1c060d82 (diff) | |
download | gcc-005537dfed601a7ec39b4d40f9d0e3bc954f167f.zip gcc-005537dfed601a7ec39b4d40f9d0e3bc954f167f.tar.gz gcc-005537dfed601a7ec39b4d40f9d0e3bc954f167f.tar.bz2 |
Simplified GC interface and other goodies.
From-SVN: r29946
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -102,18 +102,15 @@ typedef struct rtx_def { #ifdef ONLY_INT_FIELDS #ifdef CODE_FIELD_BUG - unsigned int code : 15; + unsigned int code : 16; #else unsigned short code; #endif #else /* The kind of expression this is. */ - enum rtx_code code : 15; + enum rtx_code code : 16; #endif - /* Used by the garbage collector. */ - unsigned gc_mark : 1; - /* The kind of value the expression has. */ #ifdef ONLY_INT_FIELDS int mode : 8; @@ -207,7 +204,6 @@ typedef struct rtx_def typedef struct rtvec_def{ int num_elem; /* number of elements */ - int gc_mark; struct rtx_def *elem[1]; } *rtvec; |