Commit 36ddc6b0 by Jan Hubicka Committed by Jan Hubicka

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
parent 26771da7
Sat Jan 25 16:11:22 CET 2003 Jan Hubicka <jh@suse.cz>
* df.c (read_modify_subreg_p): When osize == UNITS_PER_WORD,
subreg is read/modify.
Sat Jan 25 15:55:08 CET 2003 Jan Hubicka <jh@suse.cz>
* i386.c (ix86_expand_movstr, ix86_expand_clrstr): Consistently
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment