From d48a05c3c4e78776080394b4bcd832b540aa56b4 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Sun, 21 Jan 2007 03:54:43 +0100 Subject: 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 --- gcc/tree-flow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/tree-flow.h') diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index de2f0f9..c49faee 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -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; -- cgit v1.1