aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-01-25 16:12:17 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2003-01-25 15:12:17 +0000
commit36ddc6b01b29ce73ccbfa415bc5ef9f85b300cb6 (patch)
tree5ebc16469e0abbe7bfc48328d77ad7e3b1e722f8 /gcc/df.c
parent26771da72fa978a233ed03aa4b29068798fdac19 (diff)
downloadgcc-36ddc6b01b29ce73ccbfa415bc5ef9f85b300cb6.zip
gcc-36ddc6b01b29ce73ccbfa415bc5ef9f85b300cb6.tar.gz
gcc-36ddc6b01b29ce73ccbfa415bc5ef9f85b300cb6.tar.bz2
df.c (read_modify_subreg_p): When osize == UNITS_PER_WORD, subreg is read/modify.
* df.c (read_modify_subreg_p): When osize == UNITS_PER_WORD, subreg is read/modify. From-SVN: r61773
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 40358de..bbfa500 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -915,7 +915,7 @@ read_modify_subreg_p (x)
return true;
if (isize <= UNITS_PER_WORD)
return false;
- if (osize >= UNITS_PER_WORD)
+ if (osize > UNITS_PER_WORD)
return false;
return true;
}