diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-15 02:49:48 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-15 02:49:48 +0000 |
commit | 58860ff9680a5ea4055e1642cced83ef443c3c62 (patch) | |
tree | 46b4479d671aeb71c0634e5985c51562de3c336a /gcc/tree-ssa-alias.c | |
parent | 996cc151ed2217e4f4c6ceea3dbd481b6d893dd9 (diff) | |
download | gcc-58860ff9680a5ea4055e1642cced83ef443c3c62.tar.gz |
2005-01-14 Andrew Pinski <pinskia@physics.uc.edu>
* tree-ssa-alias.c (pass_may_alias): Add TODO_verify_stmts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93679 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 92a203cede7..8df7b82c991 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -1,5 +1,5 @@ /* Alias analysis for trees. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2005 Free Software Foundation, Inc. Contributed by Diego Novillo <dnovillo@redhat.com> This file is part of GCC. @@ -354,7 +354,8 @@ struct tree_opt_pass pass_may_alias = 0, /* properties_destroyed */ 0, /* todo_flags_start */ TODO_dump_func | TODO_rename_vars - | TODO_ggc_collect | TODO_verify_ssa, /* todo_flags_finish */ + | TODO_ggc_collect | TODO_verify_ssa + | TODO_verify_stmts, /* todo_flags_finish */ 0 /* letter */ }; |