diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 06:28:33 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 06:28:33 +0000 |
commit | bfec60702267d69642a043674ebac5c09ccaa11f (patch) | |
tree | d1332eeb65b714652970ab0020de75b713e35c07 /gcc/rtl.h | |
parent | d8db5d1c6a8477b7fc46cba3448a9b02943003f3 (diff) | |
download | gcc-bfec60702267d69642a043674ebac5c09ccaa11f.tar.gz |
* rtl.h (struct rtx_def): Move gc_mark to align mode field.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29687 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index cf65d5fb118..b2372726607 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -110,6 +110,10 @@ typedef struct rtx_def /* The kind of expression this is. */ enum rtx_code code : 15; #endif + + /* Used by the garbage collector. */ + unsigned gc_mark : 1; + /* The kind of value the expression has. */ #ifdef ONLY_INT_FIELDS int mode : 8; @@ -172,9 +176,6 @@ typedef struct rtx_def an aggregate. */ unsigned frame_related : 1; - /* Used by the garbage collector. */ - unsigned gc_mark : 1; - /* The first element of the operands of this rtx. The number of operands and their types are controlled by the `code' field, according to rtl.def. */ |