Commit 81d6d080 by Sebastian Pop Committed by Sebastian Pop

Correct computation of max.

	* graphite-ppl.h (value_max): Correct computation of max.

From-SVN: r175859
parent 369e3430
2011-07-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-ppl.h (value_max): Correct computation of max.
2011-07-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (clast_name_to_index): Add missing space.
2011-07-05 Richard Guenther <rguenther@suse.de>
......
......@@ -131,7 +131,8 @@ value_max (mpz_t res, mpz_t v1, mpz_t v2)
{
if (mpz_cmp (v1, v2) < 0)
mpz_set (res, v2);
mpz_set (res, v1);
else
mpz_set (res, v1);
}
/* Builds a new identity map for dimension DIM. */
......
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