diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-24 12:22:03 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-09-24 12:22:03 +0000 |
commit | 3233162b41350cb6398d0b199bf1ae2b810a64a7 (patch) | |
tree | 21787bddce0b40ba58daeec7a8b6514783d67f3c /gcc/loop.c | |
parent | e9cf08780341691aa273a8617c3a2fad50f406ea (diff) | |
download | gcc-3233162b41350cb6398d0b199bf1ae2b810a64a7.tar.gz |
(get_condition): Use rtx_equal_p to compare rtx.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12833 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 09ad338f14e..6646e9b4eb6 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -6736,7 +6736,7 @@ get_condition (jump, earliest) /* If this is setting OP0, get what it sets it to if it looks relevant. */ - if (SET_DEST (set) == op0) + if (rtx_equal_p (SET_DEST (set), op0)) { enum machine_mode inner_mode = GET_MODE (SET_SRC (set)); |