OSDN Git Service

2006-08-13 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 13 Aug 2006 16:49:24 +0000 (16:49 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 13 Aug 2006 16:49:24 +0000 (16:49 +0000)
        * tree-pass.h (TODO_update_ssa): Fix which bit is used to take
        into account for TODO_dump_cgraph.
        (TODO_update_ssa_no_phi): Likewise.
        (TODO_update_ssa_full_phi): Likewise.
        (TODO_update_ssa_only_virtuals): Likewise.
        (TODO_remove_unused_locals): Likewise.
        (TODO_set_props): Likewise.
        (TODO_update_stmt_usage): Likewise.

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

gcc/ChangeLog
gcc/tree-pass.h

index 78ecd6a..8777567 100644 (file)
@@ -1,3 +1,14 @@
+2006-08-13  Andrew Pinski  <pinskia@physics.uc.edu>
+
+       * tree-pass.h (TODO_update_ssa): Fix which bit is used to take
+       into account for TODO_dump_cgraph.
+       (TODO_update_ssa_no_phi): Likewise.
+       (TODO_update_ssa_full_phi): Likewise.
+       (TODO_update_ssa_only_virtuals): Likewise.
+       (TODO_remove_unused_locals): Likewise.
+       (TODO_set_props): Likewise.
+       (TODO_update_stmt_usage): Likewise.
+
 2006-08-13  Dirk Mueller  <dmueller@suse.de>
 
        * c-common.c (strict_aliasing_warning): Fix formatting.
index 3121735..8a55302 100644 (file)
@@ -177,13 +177,13 @@ struct dump_file_info
    in blocks that have one or more edges with no incoming definition
    for O_j.  This would lead to uninitialized warnings for O_j's
    symbol.  */
-#define TODO_update_ssa                        (1 << 7)
+#define TODO_update_ssa                        (1 << 8)
 
 /* Update the SSA form without inserting any new PHI nodes at all.
    This is used by passes that have either inserted all the PHI nodes
    themselves or passes that need only to patch use-def and def-def
    chains for virtuals (e.g., DCE).  */
-#define TODO_update_ssa_no_phi         (1 << 8)
+#define TODO_update_ssa_no_phi         (1 << 9)
 
 /* Insert PHI nodes everywhere they are needed.  No pruning of the
    IDF is done.  This is used by passes that need the PHI nodes for
@@ -194,7 +194,7 @@ struct dump_file_info
    may be doing something wrong.  Inserting PHI nodes for an old name
    where not all edges carry a new replacement may lead to silent
    codegen errors or spurious uninitialized warnings.  */
-#define TODO_update_ssa_full_phi       (1 << 9)
+#define TODO_update_ssa_full_phi       (1 << 10)
 
 /* Passes that update the SSA form on their own may want to delegate
    the updating of virtual names to the generic updater.  Since FUD
@@ -202,20 +202,20 @@ struct dump_file_info
    to do.  NOTE: If this flag is used, any OLD->NEW mappings for real
    names are explicitly destroyed and only the symbols marked for
    renaming are processed.  */
-#define TODO_update_ssa_only_virtuals  (1 << 10)
+#define TODO_update_ssa_only_virtuals  (1 << 11)
 
 /* Some passes leave unused local variables that can be removed from
    cfun->unexpanded_var_list.  This reduces the size of dump files and
    the memory footprint for VAR_DECLs.  */
-#define TODO_remove_unused_locals      (1 << 11)
+#define TODO_remove_unused_locals      (1 << 12)
 
 /* Internally used for the first in a sequence of passes.  It is set
    for the passes that are handed to register_dump_files.  */
-#define TODO_set_props                 (1 << 12)
+#define TODO_set_props                 (1 << 13)
 
 /* Set by passes that may make SMT's that were previously never used
    in statements, used.  */
-#define TODO_update_smt_usage           (1 << 13)
+#define TODO_update_smt_usage           (1 << 14)
 
 #define TODO_update_ssa_any            \
     (TODO_update_ssa                   \