Avoid use of lang_hooks.types.type_for_size.

2011-07-26  Sebastian Pop  <sebastian.pop@amd.com>

	* tree-data-ref.c (max_stmt_executions_tree): Do not call
	lang_hooks.types.type_for_size.

From-SVN: r176804
This commit is contained in:
Sebastian Pop 2011-07-26 18:48:33 +00:00 committed by Sebastian Pop
parent 7e806cfabd
commit 5f72e02dd8
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2011-07-26 Sebastian Pop <sebastian.pop@amd.com>
* tree-data-ref.c (max_stmt_executions_tree): Do not call
lang_hooks.types.type_for_size.
2011-07-26 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/47653

View File

@ -1614,16 +1614,14 @@ static tree
max_stmt_executions_tree (struct loop *loop)
{
double_int nit;
tree type;
if (!max_stmt_executions (loop, true, &nit))
return chrec_dont_know;
type = lang_hooks.types.type_for_size (INT_TYPE_SIZE, true);
if (!double_int_fits_to_tree_p (type, nit))
if (!double_int_fits_to_tree_p (unsigned_type_node, nit))
return chrec_dont_know;
return double_int_to_tree (type, nit);
return double_int_to_tree (unsigned_type_node, nit);
}
/* Analyze a SIV (Single Index Variable) subscript where CHREC_A is a