]> gcc.gnu.org Git - gcc.git/commit - gcc/Makefile.in
Makefile.in (tree-ssanames.o): Depend on TREE_FLOW_H.
authorDiego Novillo <dnovillo@redhat.com>
Thu, 10 Jun 2004 22:37:05 +0000 (22:37 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Thu, 10 Jun 2004 22:37:05 +0000 (18:37 -0400)
commit95a3742c4876d496fb2f198b6f94c0b1a33b5ceb
treef3e7c5ed70989e5440f3ec4150aca5517dd053b3
parenta72967cd5d574694af7abb943c237a8960eabbab
Makefile.in (tree-ssanames.o): Depend on TREE_FLOW_H.

* Makefile.in (tree-ssanames.o): Depend on TREE_FLOW_H.
* tree-flow.h (ssa_names, num_ssa_names, ssa_name): Declare.
(highest_ssa_version): Remove.
* tree-outof-ssa.c (new_temp_expr_table): Replace
highest_ssa_version with num_ssa_names.
(dump_replaceable_exprs): Likewise.
(rewrite_vars_out_of_ssa): Likewise.
* tree-ssa-ccp.c (initialize): Likewise
* tree-ssa-copyrename.c (rename_ssa_copies): Likewise.
* tree-ssa-dce.c (tree_dce_init): Likewise.
* tree-ssa-dom.c (tree_ssa_dominator_optimize): Likewise.
* tree-ssa-live.c (create_ssa_var_map): Likewise.
(dump_var_map): Likewise.
* tree-ssa.c (verify_ssa): Likewise.
(kill_redundant_phi_nodes): Likewise.
Do not build a local array of SSA_NAMEs.  Use the ssa_names table.
* tree-ssanames.c: Include tree-flow.h
(ssa_names): New varray.
(init_ssa_names): Initialize ssa_names.
Reserve the first slot of the ssa_names table.
(make_ssa_name): Push the newly created SSA_NAME into ssa_names.
Assign version numbers using num_ssa_names.

From-SVN: r82950
gcc/ChangeLog
gcc/Makefile.in
gcc/tree-flow.h
gcc/tree-outof-ssa.c
gcc/tree-ssa-ccp.c
gcc/tree-ssa-copyrename.c
gcc/tree-ssa-dce.c
gcc/tree-ssa-dom.c
gcc/tree-ssa-live.c
gcc/tree-ssa.c
gcc/tree-ssanames.c
This page took 0.399627 seconds and 5 git commands to generate.