From 0bff60e5b729caa36d6669be4a964b87a9b6081b Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Sun, 13 Aug 2006 16:49:24 +0000 Subject: [PATCH] tree-pass.h (TODO_update_ssa): Fix which bit is used to take into account for TODO_dump_cgraph. 2006-08-13 Andrew Pinski * 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. From-SVN: r116111 --- gcc/ChangeLog | 11 +++++++++++ gcc/tree-pass.h | 14 +++++++------- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 78ecd6a6575..877756776bf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2006-08-13 Andrew Pinski + + * 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 * c-common.c (strict_aliasing_warning): Fix formatting. diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index 3121735e85a..8a553021706 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -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 \