aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-pass.h
diff options
context:
space:
mode:
authorBrian Booth <bbooth@redhat.com>2004-07-27 18:32:50 +0000
committerBrian Booth <bbooth@gcc.gnu.org>2004-07-27 18:32:50 +0000
commitb3fade83995e0584a520c43c423fe866bcea8908 (patch)
tree8ef09fae76670cdbb4009e3f7685931d33dd0c19 /gcc/tree-pass.h
parent62d591893b22a727b229a2984453da12198b69e4 (diff)
downloadgcc-b3fade83995e0584a520c43c423fe866bcea8908.zip
gcc-b3fade83995e0584a520c43c423fe866bcea8908.tar.gz
gcc-b3fade83995e0584a520c43c423fe866bcea8908.tar.bz2
tree-optimize.c (register_one_dump_file): Update condition that uses static_pass_number.
* tree-optimize.c (register_one_dump_file): Update condition that uses static_pass_number. (dup_pass_1): Replace with... (next_pass_1): This. (NEXT_PASS): Call next_pass_1. (DUP_PASS): Remove. (init_tree_optimization_passes): Remove uses of DUP_PASS. (execute_one_pass): Update condition that uses static_pass_number. * tree-pass.h (tree_opt_pass): Declare static_pass_number as a signed integer. From-SVN: r85226
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r--gcc/tree-pass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h
index 1edff2d..9651c9e 100644
--- a/gcc/tree-pass.h
+++ b/gcc/tree-pass.h
@@ -50,7 +50,7 @@ struct tree_opt_pass
struct tree_opt_pass *next;
/* Static pass number, used as a fragment of the dump file name. */
- unsigned int static_pass_number;
+ int static_pass_number;
/* The timevar id associated with this pass. */
/* ??? Ideally would be dynamically assigned. */