aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2006-12-14 17:22:26 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2006-12-14 16:22:26 +0000
commit5cdec2a1698690817a8dc642b819dd9240fde80b (patch)
tree0760e4389f55ccb9e574324c37ed8016ee8d3a08 /gcc/tree-flow.h
parent60784de8d17daae45b694d5d901d2557d4593bab (diff)
downloadgcc-5cdec2a1698690817a8dc642b819dd9240fde80b.zip
gcc-5cdec2a1698690817a8dc642b819dd9240fde80b.tar.gz
gcc-5cdec2a1698690817a8dc642b819dd9240fde80b.tar.bz2
tree-flow.h (struct stmt_ann_d): Move bitfield references_memory to proper place.
* tree-flow.h (struct stmt_ann_d): Move bitfield references_memory to proper place. From-SVN: r119863
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 f4337d2a..a85d732 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. */