diff options
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cse.c b/gcc/cse.c index 2f74b12c3a54..6a968d197883 100644 --- a/gcc/cse.c +++ b/gcc/cse.c @@ -4154,10 +4154,10 @@ struct set The size of this field should match the size of the mode field of struct rtx_def (see rtl.h). */ ENUM_BITFIELD(machine_mode) mode : 8; - /* A constant equivalent for SET_SRC, if any. */ - rtx src_const; /* Hash value of constant equivalent for SET_SRC. */ unsigned src_const_hash; + /* A constant equivalent for SET_SRC, if any. */ + rtx src_const; /* Table entry for constant equivalent for SET_SRC, if any. */ struct table_elt *src_const_elt; /* Table entry for the destination address. */ |