Commit 4a198dea by Andreas Schwab Committed by Andreas Schwab

tree-ssa-dom.c (record_range): Fix violation of strict aliasing rules.

	* tree-ssa-dom.c (record_range): Fix violation of strict aliasing
	rules.

From-SVN: r88029
parent 66719604
2004-09-24 Andreas Schwab <schwab@suse.de>
* tree-ssa-dom.c (record_range): Fix violation of strict aliasing
rules.
2004-09-24 Eric Botcazou <ebotcazou@libertysurf.fr>
* config.gcc (sparc64-*-solaris2*): Include sparc/sol2-gas.h
......
......@@ -3004,9 +3004,9 @@ record_range (tree cond, basic_block bb)
slot = htab_find_slot (vrp_data, vrp_hash_elt, INSERT);
if (*slot == NULL)
*slot = (void *)vrp_hash_elt;
*slot = (void *) vrp_hash_elt;
vrp_hash_elt = *(struct vrp_hash_elt **)slot;
vrp_hash_elt = (struct vrp_hash_elt *) *slot;
vrp_records_p = &vrp_hash_elt->records;
element = ggc_alloc (sizeof (struct vrp_element));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment