tree-flow.h (struct stmt_ann_d): Move references_memory to proper place within annota...
authorJan Hubicka <jh@suse.cz>
Sun, 21 Jan 2007 02:54:43 +0000 (03:54 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Sun, 21 Jan 2007 02:54:43 +0000 (02:54 +0000)
* tree-flow.h (struct stmt_ann_d): Move references_memory to proper
place within annotation.

From-SVN: r121022

gcc/ChangeLog
gcc/tree-flow.h

index f878f72ad2326bcb32026ffa3a352476eb6ad8fa..95535d21db818d242c1fb36d1092705fb195e4d8 100644 (file)
@@ -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.
index de2f0f9f2433a8989e8b5bfe048988dfeb0e7050..c49faeef342b68af9de404cd9cbf08d4d81dca5e 100644 (file)
@@ -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;