diff options
author | Jan Hubicka <jh@suse.cz> | 2007-01-21 03:54:43 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2007-01-21 02:54:43 +0000 |
commit | d48a05c3c4e78776080394b4bcd832b540aa56b4 (patch) | |
tree | eb952a0276f6cf9a14900c4a85090e06fcd731af /gcc | |
parent | d565bb3a7eae53fc777ecce6727b125870046f1c (diff) | |
download | gcc-d48a05c3c4e78776080394b4bcd832b540aa56b4.zip gcc-d48a05c3c4e78776080394b4bcd832b540aa56b4.tar.gz gcc-d48a05c3c4e78776080394b4bcd832b540aa56b4.tar.bz2 |
tree-flow.h (struct stmt_ann_d): Move references_memory to proper place within annotation.
* tree-flow.h (struct stmt_ann_d): Move references_memory to proper
place within annotation.
From-SVN: r121022
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-flow.h | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f878f72..95535d2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-01-20 Jan Hubicka <jh@suse.cz> + + * tree-flow.h (struct stmt_ann_d): Move references_memory to proper + place within annotation. + 2007-01-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * pa.c (output_move_double): Change array size of xoperands to 4. diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index de2f0f9..c49faee 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -381,15 +381,15 @@ struct stmt_ann_d GTY(()) /* Set of variables that have had their address taken in the statement. */ bitmap addresses_taken; - /* Nonzero if the statement references memory (at least one of its - expressions contains a non-register operand). */ - unsigned references_memory : 1; - /* Unique identifier for this statement. These ID's are to be created by each pass on an as-needed basis in any order convenient for the pass which needs statement UIDs. */ unsigned int uid; + /* Nonzero if the statement references memory (at least one of its + expressions contains a non-register operand). */ + unsigned references_memory : 1; + /* Nonzero if the statement has been modified (meaning that the operands need to be scanned again). */ unsigned modified : 1; |