Commit 9f7aa952 by Jan Hubicka Committed by Jan Hubicka

tree-ssa-loop-ivopts.c (peel_address): Fix abort on VIEW_CONVERT_EXPR.

	* tree-ssa-loop-ivopts.c (peel_address): Fix abort on
	VIEW_CONVERT_EXPR.

From-SVN: r87237
parent b2d59f6f
2004-09-09 Jan Hubicka <jh@suse.cz>
* tree-ssa-loop-ivopts.c (peel_address): Fix abort on
VIEW_CONVERT_EXPR.
2004-09-09 Nathan Sidwell <nathan@codesourcery.com>
* Makefile.in (gengtype): Use $(BUILD_ERRORS).
......
......@@ -2533,6 +2533,9 @@ peel_address (tree addr, unsigned HOST_WIDE_INT *diff)
return TREE_OPERAND (addr, 0);
case VIEW_CONVERT_EXPR:
return TREE_OPERAND (addr, 0);
case ARRAY_REF:
off = TREE_OPERAND (addr, 1);
......
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