Commit 5cb7a25a by Richard Kenner

(expand_expr, case INDIRECT_REF): Correct typo in May 8 change.

From-SVN: r10695
parent 2e742d89
......@@ -4588,7 +4588,7 @@ expand_expr (exp, target, tmode, modifier)
through a pointer to const does not mean that the value there can
never change. Languages where it can never change should
also set TREE_STATIC. */
RTX_UNCHANGING_P (temp) = TREE_READONLY (exp) | TREE_STATIC (exp);
RTX_UNCHANGING_P (temp) = TREE_READONLY (exp) & TREE_STATIC (exp);
return temp;
}
......
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