diff options
author | Janis Johnson <janis187@us.ibm.com> | 2002-01-11 23:48:06 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2002-01-11 23:48:06 +0000 |
commit | a84b4898c1c415bf66f7759eb385384a8676b8df (patch) | |
tree | c36110c21e18e1ab0f951d00f4c98476b99bd88b /gcc/expr.c | |
parent | aaef1c1262a37fdac4fa987b9b648f51c652521a (diff) | |
download | gcc-a84b4898c1c415bf66f7759eb385384a8676b8df.zip gcc-a84b4898c1c415bf66f7759eb385384a8676b8df.tar.gz gcc-a84b4898c1c415bf66f7759eb385384a8676b8df.tar.bz2 |
* expr.c (expand_assignment): Fix misuse of MEM_KEEP_ALIAS_SET.
From-SVN: r48785
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3730,7 +3730,7 @@ expand_assignment (to, from, want_value, suggest_reg) RTX_UNCHANGING_P (to_rtx) = 1; } - if (! can_address_p (to)) + if (GET_CODE (to_rtx) == MEM && ! can_address_p (to)) { if (to_rtx == orig_to_rtx) to_rtx = copy_rtx (to_rtx); |