aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorSeongbae Park <spark@gcc.gnu.org>2007-06-12 01:39:25 +0000
committerSeongbae Park <spark@gcc.gnu.org>2007-06-12 01:39:25 +0000
commit467f79e82daa62411868d430d14fb983a8a5ece9 (patch)
tree05d07189e07ebadc59c1a63867bfb607e3ae388d /gcc/combine.c
parent46cc214143093bae401dd148b00b6d0330b7af4b (diff)
downloadgcc-467f79e82daa62411868d430d14fb983a8a5ece9.zip
gcc-467f79e82daa62411868d430d14fb983a8a5ece9.tar.gz
gcc-467f79e82daa62411868d430d14fb983a8a5ece9.tar.bz2
combine.c (subst): Fix typo.
2007-06-11 Seongbae Park <seongbae.park@gmail.com> * combine.c (subst): Fix typo. From-SVN: r125635
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index e44bad9..d7ac8ad 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -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