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:
parent
daca85ca4f
commit
4413b636d9
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user