Commit 6625d7bc by Eric Botcazou Committed by Eric Botcazou

Fix date and trailing space in previous commit.

From-SVN: r193887
parent ce3da0d0
2012-11-27 Eric Botcazou <ebotcazou@adacore.com> 2012-11-28 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/decl.c (gnat_to_gnu_entity) <object>: Use * gcc-interface/decl.c (gnat_to_gnu_entity) <object>: Use
valid_constant_size_p to detect too large objects. valid_constant_size_p to detect too large objects.
......
...@@ -3026,7 +3026,7 @@ max_size (tree exp, bool max_p) ...@@ -3026,7 +3026,7 @@ max_size (tree exp, bool max_p)
case tcc_unary: case tcc_unary:
if (code == NON_LVALUE_EXPR) if (code == NON_LVALUE_EXPR)
return max_size (TREE_OPERAND (exp, 0), max_p); return max_size (TREE_OPERAND (exp, 0), max_p);
return fold_build1 (code, type, return fold_build1 (code, type,
max_size (TREE_OPERAND (exp, 0), max_size (TREE_OPERAND (exp, 0),
code == NEGATE_EXPR ? !max_p : max_p)); code == NEGATE_EXPR ? !max_p : max_p));
......
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