diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-25 15:12:17 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-25 15:12:17 +0000 |
commit | 3e57036db6a1d1d961995d494695c907ac7a5f23 (patch) | |
tree | 5ebc16469e0abbe7bfc48328d77ad7e3b1e722f8 /gcc/df.c | |
parent | 65e8d6831bf4dec50223c53432c1bc8146c63400 (diff) | |
download | gcc-3e57036db6a1d1d961995d494695c907ac7a5f23.tar.gz |
* df.c (read_modify_subreg_p): When osize == UNITS_PER_WORD,
subreg is read/modify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61773 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.c')
-rw-r--r-- | gcc/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |