summaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-25 15:12:17 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-25 15:12:17 +0000
commit3e57036db6a1d1d961995d494695c907ac7a5f23 (patch)
tree5ebc16469e0abbe7bfc48328d77ad7e3b1e722f8 /gcc/df.c
parent65e8d6831bf4dec50223c53432c1bc8146c63400 (diff)
downloadgcc-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 40358de80aa..bbfa500edff 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;
}