aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-10-18 14:59:48 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-10-18 14:59:48 +0000
commite445a2ff978362e261a74f26fe5e06d539ed893b (patch)
treeee9ea6e05bfb23fe8dcffc5c462dc9595eba198f /gcc/tree-flow.h
parent9fc5a389d68d7fbfc32d86f3ad7f631cb4fc634d (diff)
downloadgcc-e445a2ff978362e261a74f26fe5e06d539ed893b.zip
gcc-e445a2ff978362e261a74f26fe5e06d539ed893b.tar.gz
gcc-e445a2ff978362e261a74f26fe5e06d539ed893b.tar.bz2
tree-ssa.c (uid_ssaname_map_eq): New function.
2007-10-18 Richard Guenther <rguenther@suse.de> * tree-ssa.c (uid_ssaname_map_eq): New function. (uid_ssaname_map_has): Likewise. (init_tree_ssa): Allocate default_defs as uid_ssaname map. * tree-flow.h (struct gimple_df): Make default_defs a uid_ssaname map. * tree-dfa.c (gimple_default_def): Deal with it. (set_default_def): Likewise. From-SVN: r129441
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r--gcc/tree-flow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index b004ad9..e07e2b2 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -159,7 +159,7 @@ struct gimple_df GTY(())
means that the first reference to this variable in the function is a
USE or a VUSE. In those cases, the SSA renamer creates an SSA name
for this variable with an empty defining statement. */
- htab_t GTY((param_is (struct int_tree_map))) default_defs;
+ htab_t GTY((param_is (union tree_node))) default_defs;
/* 'true' after aliases have been computed (see compute_may_aliases). */
unsigned int aliases_computed_p : 1;