]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* tree-flow.h (struct stmt_ann_d): Move bitfield references_memory
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Dec 2006 16:22:26 +0000 (16:22 +0000)
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Dec 2006 16:22:26 +0000 (16:22 +0000)
to proper place.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119863 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-flow.h

index 82a3641ea2884533604ef53b674ebd58a075ba83..5e779a44773d0f8c059fd5dd8b42b0fc6dd40249 100644 (file)
@@ -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
index f4337d2a1e01d2cf8abf425111dfa3480538387a..a85d732aa7dcdc41329458f79a41cdd422fef1ed 100644 (file)
@@ -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.  */