diff options
Diffstat (limited to 'contrib/gcc/expr.c')
-rw-r--r-- | contrib/gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/expr.c b/contrib/gcc/expr.c index 2d307a2..39591c9 100644 --- a/contrib/gcc/expr.c +++ b/contrib/gcc/expr.c @@ -4582,7 +4582,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; } |