diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-14 16:22:26 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-12-14 16:22:26 +0000 |
| commit | 9de7e426ff364bbd0ceaf577bc918cd1630efdcb (patch) | |
| tree | 0760e4389f55ccb9e574324c37ed8016ee8d3a08 | |
| parent | 5a1cd9d8227bd2136789cfe60e08a53b8a1a5064 (diff) | |
| download | ppe42-gcc-9de7e426ff364bbd0ceaf577bc918cd1630efdcb.tar.gz ppe42-gcc-9de7e426ff364bbd0ceaf577bc918cd1630efdcb.zip | |
* tree-flow.h (struct stmt_ann_d): Move bitfield references_memory
to proper place.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119863 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 82a3641ea28..5e779a44773 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-12-14 Jan Hubicka <jh@suse.cz> + + * tree-flow.h (struct stmt_ann_d): Move bitfield references_memory + to proper place. + 2006-12-14 Richard Guenther <rguenther@suse.de> PR tree-optimization/30197 diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index f4337d2a1e0..a85d732aa7d 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -356,10 +356,6 @@ struct stmt_ann_d GTY(()) { struct tree_ann_common_d common; - /* Nonzero if the statement references memory (at least one of its - expressions contains a non-register operand). */ - unsigned references_memory : 1; - /* Basic block that contains this statement. */ basic_block bb; @@ -369,6 +365,10 @@ 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. */ |

