diff options
author | spark <spark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-12 01:39:25 +0000 |
---|---|---|
committer | spark <spark@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-12 01:39:25 +0000 |
commit | 6644b3a89dcd3181b657b6c39c8179580cba4020 (patch) | |
tree | 05d07189e07ebadc59c1a63867bfb607e3ae388d /gcc/combine.c | |
parent | a962da05c9d71f8019d33a78e2943c96ebf03cc3 (diff) | |
download | gcc-6644b3a89dcd3181b657b6c39c8179580cba4020.tar.gz |
2007-06-11 Seongbae Park <seongbae.park@gmail.com>
* combine.c (subst): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125635 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index e44bad986eb..d7ac8ad37a0 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 |