diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-27 23:28:33 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-27 23:28:33 -0700 |
commit | 18def38f7b5671119dcc9b738c371d28f8537301 (patch) | |
tree | d1332eeb65b714652970ab0020de75b713e35c07 /gcc | |
parent | c465d914bb45c13fc5aef3b6da32c1503ea99454 (diff) | |
download | gcc-18def38f7b5671119dcc9b738c371d28f8537301.zip gcc-18def38f7b5671119dcc9b738c371d28f8537301.tar.gz gcc-18def38f7b5671119dcc9b738c371d28f8537301.tar.bz2 |
* rtl.h (struct rtx_def): Move gc_mark to align mode field.
From-SVN: r29687
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/rtl.h | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cc70666..c2e22a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Sep 27 23:27:21 1999 Richard Henderson <rth@cygnus.com> + + * rtl.h (struct rtx_def): Move gc_mark to align mode field. + Mon Sep 27 23:20:29 1999 Mark Mitchell <mark@codesourcery.com> * tree.h (struct tree_decl): Use `bclass', not `class', in name of @@ -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. */ |