Commit b1aa345d by Richard Stallman

Comment change.

From-SVN: r4130
parent 0b1dffa7
......@@ -1628,6 +1628,9 @@ non_lvalue (x)
{
if (TREE_CODE (x) == INTEGER_CST && integer_zerop (x))
{
/* Use NOP_EXPR instead of NON_LVALUE_EXPR
so convert_for_assignment won't strip it.
This is so this 0 won't be treated as a null pointer constant. */
result = build1 (NOP_EXPR, TREE_TYPE (x), x);
TREE_CONSTANT (result) = TREE_CONSTANT (x);
return result;
......
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