Commit d9ae7906 by Sebastian Pop

Remove redundant checks in graphite_can_represent_scev.

2010-08-17  Tobias Grosser  <grosser@fim.uni-passau.de>

        * graphite-scop-detection.c (graphite_can_represent_scev): Remove
        redundant checks.

From-SVN: r164780
parent 02315365
2010-08-12 Sebastian Pop <sebastian.pop@amd.com>
2010-09-30 Tobias Grosser <grosser@fim.uni-passau.de>
* graphite-scop-detection.c (graphite_can_represent_scev): Remove
redundant checks.
2010-09-30 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (precision_for_value): Adjust
computation of precision by 1.
2010-08-17 Tobias Grosser <grosser@fim.uni-passau.de>
* graphite-scop-detection.c (graphite_can_represent_scev): Remove
redundant checks.
2010-08-12 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (precision_for_value): Adjust
......
......@@ -245,8 +245,7 @@ graphite_can_represent_scev (tree scev, int outermost_loop)
if (!scev_is_linear_expression (scev))
return false;
return evolution_function_is_invariant_p (scev, outermost_loop)
|| evolution_function_is_affine_multivariate_p (scev, outermost_loop);
return true;
}
......
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