summaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-21 02:54:43 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2007-01-21 02:54:43 +0000
commitbec28d383c79780a7bb5975fa0e978aa21aee8fc (patch)
treeeb952a0276f6cf9a14900c4a85090e06fcd731af /gcc/tree-flow.h
parent4eb41f08e250cc599f0a7188393d7c089df43eaf (diff)
downloadgcc-bec28d383c79780a7bb5975fa0e978aa21aee8fc.tar.gz
* tree-flow.h (struct stmt_ann_d): Move references_memory to proper
place within annotation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121022 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r--gcc/tree-flow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index de2f0f9f243..c49faeef342 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;