Commit 654a61fb by Richard Guenther Committed by Richard Biener

re PR bootstrap/45611 (SIGBUS in generate_option_input_file on Solaris 2/SPARC)

2010-09-13  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/45611
	* tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Fix typo.
	(copy_ref_info): Likewise.

From-SVN: r164244
parent 4e3a5f19
2010-09-13 Richard Guenther <rguenther@suse.de>
PR tree-optimization/45611
* tree-ssa-loop-ivopts.c (rewrite_use_nonlinear_expr): Fix typo.
(copy_ref_info): Likewise.
2010-09-13 Alexandre Oliva <aoliva@redhat.com>
PR debug/45604
......
......@@ -5869,7 +5869,7 @@ rewrite_use_nonlinear_expr (struct ivopts_data *data,
information. */
if (SSA_NAME_PTR_INFO (comp))
{
SSA_NAME_PTR_INFO (comp)->align = BITS_PER_UNIT;
SSA_NAME_PTR_INFO (comp)->align = 1;
SSA_NAME_PTR_INFO (comp)->misalign = 0;
}
}
......@@ -5934,7 +5934,7 @@ copy_ref_info (tree new_ref, tree old_ref)
}
else
{
new_pi->align = BITS_PER_UNIT;
new_pi->align = 1;
new_pi->misalign = 0;
}
}
......
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