re PR tree-optimization/23546 (ICE in for_each_index, at tree-ssa-loop-im.c:202)

2005-08-24  Paolo Bonzini  <bonzini@gnu.org>

	PR tree-optimization/23546
	* tree-ssa-loop-im.c (for_each_index): Handle INTEGER_CST
	and REAL_CST nodes.

From-SVN: r103471
This commit is contained in:
Paolo Bonzini 2005-08-25 06:40:14 +00:00 committed by Paolo Bonzini
parent 2d9c5743d6
commit e288982373
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2005-08-24 Paolo Bonzini <bonzini@gnu.org>
PR tree-optimization/23546
* tree-ssa-loop-im.c (for_each_index): Handle INTEGER_CST
and REAL_CST nodes.
2005-08-24 Pete Steinmetz <steinmtz@us.ibm.com>
* params.def (PARAM_MIN_SPEC_PROB): New.

View File

@ -203,6 +203,8 @@ for_each_index (tree *addr_p, bool (*cbck) (tree, tree *, void *), void *data)
case RESULT_DECL:
case VECTOR_CST:
case COMPLEX_CST:
case INTEGER_CST:
case REAL_CST:
return true;
case TARGET_MEM_REF: