Commit 0dfb0dc6 by Sebastian Pop Committed by Sebastian Pop

re PR middle-end/37379 ([graphite] ICE compiling aermod.f90 with -ffast-math…

re PR middle-end/37379 ([graphite] ICE compiling aermod.f90 with -ffast-math -floop-block -O2 -fgraphite)

2008-11-07  Sebastian Pop  <sebastian.pop@amd.com>

	PR middle-end/37379
	* tree-scalar-evolution.c (instantiate_scev_1): Return
	chrec_dont_know for VL_EXP_CLASS_P.

From-SVN: r141682
parent f5026442
2008-11-07 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/37379
* tree-scalar-evolution.c (instantiate_scev_1): Return
chrec_dont_know for VL_EXP_CLASS_P.
2008-11-06 Uros Bizjak <ubizjak@gmail.com> 2008-11-06 Uros Bizjak <ubizjak@gmail.com>
* reg-stack.c (reg_to_stack): Add missing braces in memset * reg-stack.c (reg_to_stack): Add missing braces in memset
......
...@@ -2213,7 +2213,9 @@ instantiate_scev_1 (basic_block instantiate_below, ...@@ -2213,7 +2213,9 @@ instantiate_scev_1 (basic_block instantiate_below,
break; break;
} }
gcc_assert (!VL_EXP_CLASS_P (chrec)); if (VL_EXP_CLASS_P (chrec))
return chrec_dont_know;
switch (TREE_CODE_LENGTH (TREE_CODE (chrec))) switch (TREE_CODE_LENGTH (TREE_CODE (chrec)))
{ {
case 3: case 3:
......
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