Commit 467f79e8 by Seongbae Park

combine.c (subst): Fix typo.

2007-06-11  Seongbae Park <seongbae.park@gmail.com>

	* combine.c (subst): Fix typo.

From-SVN: r125635
parent 46cc2141
......@@ -4237,7 +4237,7 @@ subst (rtx x, rtx from, rtx to, int in_dest, int unique_copy)
So force this insn not to match in this (rare) case. */
if (! in_dest && code == REG && REG_P (from)
&& reg_ovelap_mentioned_p (x, from))
&& reg_overlap_mentioned_p (x, from))
return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
/* If this is an object, we are done unless it is a MEM or LO_SUM, both
......
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