diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-10 08:44:42 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-12-10 08:44:42 -0500 |
commit | 5cb7a25a952e77361f70d43e545957209739b147 (patch) | |
tree | 10b750189201afb6f91989c573a0a2fa6bab1763 /gcc | |
parent | 2e742d899d75a0e44e605d3d4be58c44b75a2a88 (diff) | |
download | gcc-5cb7a25a952e77361f70d43e545957209739b147.zip gcc-5cb7a25a952e77361f70d43e545957209739b147.tar.gz gcc-5cb7a25a952e77361f70d43e545957209739b147.tar.bz2 |
(expand_expr, case INDIRECT_REF): Correct typo in May 8 change.
From-SVN: r10695
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |