Commit 5cdec2a1 by Jan Hubicka Committed by Jan Hubicka

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
parent 60784de8
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
......
......@@ -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. */
......
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