re PR other/54324 (GCC install document does not list minimum required g++ version)

PR other/54324
	* tree-ssa-coalesce.c (struct ssa_name_var_hash): Remove "union"
	from template parameter.

From-SVN: r194584
This commit is contained in:
Aldy Hernandez 2012-12-18 15:26:27 +00:00 committed by Aldy Hernandez
parent 9654e9c299
commit e492fb921d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2012-12-18 Aldy Hernandez <aldyh@redhat.com>
PR other/54324
* tree-ssa-coalesce.c (struct ssa_name_var_hash): Remove "union"
from template parameter.
2012-12-18 Richard Biener <rguenther@suse.de>
PR middle-end/54838

View file

@ -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;