utils.c (max_size): Use MIN_EXPR to find the minimum value of a COND_EXPR.

* utils.c (max_size): Use MIN_EXPR to find the minimum value of a
	COND_EXPR.

From-SVN: r81721
This commit is contained in:
Roger Sayle 2004-05-11 22:54:55 +00:00 committed by Roger Sayle
parent daca85ca4f
commit 4413b636d9
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-05-11 Roger Sayle <roger@eyesopen.com>
* utils.c (max_size): Use MIN_EXPR to find the minimum value of a
COND_EXPR.
2004-05-10 Doug Rupp <rupp@gnat.com>
* 5qsystem.ads: Remove Short_Address subtype declaration. Moved to

View File

@ -2215,7 +2215,7 @@ max_size (tree exp, int max_p)
if (code == SAVE_EXPR)
return exp;
else if (code == COND_EXPR)
return fold (build (MAX_EXPR, type,
return fold (build (max_p ? MAX_EXPR : MIN_EXPR, type,
max_size (TREE_OPERAND (exp, 1), max_p),
max_size (TREE_OPERAND (exp, 2), max_p)));
else if (code == CALL_EXPR && TREE_OPERAND (exp, 1) != 0)