re PR ada/78524 (failure of ACATS c41104a at -O0)

PR ada/78524
	* gcc-interface/utils.c (max_size) <tcc_reference>: Add missing
	conversion to original type in the PLACEHOLDER_EXPR case.

From-SVN: r242902
This commit is contained in:
Eric Botcazou 2016-11-27 22:04:13 +00:00 committed by Eric Botcazou
parent 18e5eb77b7
commit 6724cebe76
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2016-11-27 Eric Botcazou <ebotcazou@adacore.com>
PR ada/78524
* gcc-interface/utils.c (max_size) <tcc_reference>: Add missing
conversion to original type in the PLACEHOLDER_EXPR case.
2016-11-27 Eric Botcazou <ebotcazou@adacore.com>
PR ada/78531

View File

@ -3548,7 +3548,9 @@ max_size (tree exp, bool max_p)
{
tree val_type = TREE_TYPE (TREE_OPERAND (exp, 1));
tree val = (max_p ? TYPE_MAX_VALUE (type) : TYPE_MIN_VALUE (type));
return max_size (convert (get_base_type (val_type), val), true);
return
convert (type,
max_size (convert (get_base_type (val_type), val), true));
}
return exp;