diff options
author | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-18 15:26:27 +0000 |
---|---|---|
committer | aldyh <aldyh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-18 15:26:27 +0000 |
commit | b1105cfdb69d04410eb70dbc289e57e70d95ee60 (patch) | |
tree | a48d543a39c54ae63c7cf3dcdc9de7dafc42ea91 /gcc/tree-ssa-coalesce.c | |
parent | 576b1370b24f6d3edd9847b3a64c81fdbc32018b (diff) | |
download | gcc-b1105cfdb69d04410eb70dbc289e57e70d95ee60.tar.gz |
PR other/54324
* tree-ssa-coalesce.c (struct ssa_name_var_hash): Remove "union"
from template parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194584 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-coalesce.c')
-rw-r--r-- | gcc/tree-ssa-coalesce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-coalesce.c b/gcc/tree-ssa-coalesce.c index ce04fdf7759..47eba979e1b 100644 --- a/gcc/tree-ssa-coalesce.c +++ b/gcc/tree-ssa-coalesce.c @@ -1259,7 +1259,7 @@ coalesce_partitions (var_map map, ssa_conflicts_p graph, coalesce_list_p cl, /* Hashtable support for storing SSA names hashed by their SSA_NAME_VAR. */ -struct ssa_name_var_hash : typed_noop_remove <union tree_node> +struct ssa_name_var_hash : typed_noop_remove <tree_node> { typedef union tree_node value_type; typedef union tree_node compare_type; |