Commit d48a05c3 by Jan Hubicka Committed by Jan Hubicka

tree-flow.h (struct stmt_ann_d): Move references_memory to proper place within annotation.

	* tree-flow.h (struct stmt_ann_d): Move references_memory to proper
	place within annotation.

From-SVN: r121022
parent d565bb3a
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> 2007-01-20 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa.c (output_move_double): Change array size of xoperands to 4. * pa.c (output_move_double): Change array size of xoperands to 4.
......
...@@ -381,15 +381,15 @@ struct stmt_ann_d GTY(()) ...@@ -381,15 +381,15 @@ struct stmt_ann_d GTY(())
/* Set of variables that have had their address taken in the statement. */ /* Set of variables that have had their address taken in the statement. */
bitmap addresses_taken; 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 /* 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 by each pass on an as-needed basis in any order convenient for the
pass which needs statement UIDs. */ pass which needs statement UIDs. */
unsigned int uid; 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 /* Nonzero if the statement has been modified (meaning that the operands
need to be scanned again). */ need to be scanned again). */
unsigned modified : 1; unsigned modified : 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment