From 467f79e82daa62411868d430d14fb983a8a5ece9 Mon Sep 17 00:00:00 2001 From: Seongbae Park Date: Tue, 12 Jun 2007 01:39:25 +0000 Subject: combine.c (subst): Fix typo. 2007-06-11 Seongbae Park * combine.c (subst): Fix typo. From-SVN: r125635 --- gcc/combine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/combine.c') 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 -- cgit v1.1