Commit cdc30c45 by Zdenek Dvorak Committed by Zdenek Dvorak

tree-chrec.c (chrec_convert_aggressive): Return NULL on failure.

	* tree-chrec.c (chrec_convert_aggressive): Return NULL on failure.

From-SVN: r115740
parent cb4132fe
2006-07-25 Zdenek Dvorak <dvorakz@suse.cz>
* tree-chrec.c (chrec_convert_aggressive): Return NULL on failure.
2006-07-25 Nick Clifton <nickc@redhat.com> 2006-07-25 Nick Clifton <nickc@redhat.com>
* ggc-page.c (NUM_SIZE_LOOKUP): New constant - the length of the * ggc-page.c (NUM_SIZE_LOOKUP): New constant - the length of the
......
...@@ -1326,7 +1326,7 @@ chrec_convert_aggressive (tree type, tree chrec) ...@@ -1326,7 +1326,7 @@ chrec_convert_aggressive (tree type, tree chrec)
/* If we cannot perform arithmetic in TYPE, avoid creating an scev. */ /* If we cannot perform arithmetic in TYPE, avoid creating an scev. */
if (avoid_arithmetics_in_type_p (type)) if (avoid_arithmetics_in_type_p (type))
return false; return NULL_TREE;
left = CHREC_LEFT (chrec); left = CHREC_LEFT (chrec);
right = CHREC_RIGHT (chrec); right = CHREC_RIGHT (chrec);
......
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