Commit 456cc718 by Sebastian Pop Committed by Sebastian Pop

Use sizetype instead of unsigned_type_node.

2010-03-05  Sebastian Pop  <sebastian.pop@amd.com>

	* graphite-sese-to-poly.c (add_param_constraints): Use sizetype
	instead of unsigned_type_node.

From-SVN: r157290
parent 3640d64c
2010-03-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-sese-to-poly.c (add_param_constraints): Use sizetype
instead of unsigned_type_node.
2010-03-05 Sebastian Pop <sebastian.pop@amd.com>
Reza Yazdani <reza.yazdani@amd.com>
PR middle-end/43065
......
......@@ -1509,8 +1509,8 @@ add_param_constraints (scop_p scop, ppl_Polyhedron_t context, graphite_dim_t p)
}
else if (POINTER_TYPE_P (type))
{
lb = TYPE_MIN_VALUE (unsigned_type_node);
ub = TYPE_MAX_VALUE (unsigned_type_node);
lb = TYPE_MIN_VALUE (sizetype);
ub = TYPE_MAX_VALUE (sizetype);
}
if (lb)
......
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