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
This commit is contained in:
Richard Guenther 2010-09-13 10:47:28 +00:00 committed by Richard Biener
parent 4e3a5f1940
commit 654a61fb34
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
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

View File

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