diff options
author | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 19:41:01 +0000 |
---|---|---|
committer | mpolacek <mpolacek@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-07-13 19:41:01 +0000 |
commit | 643a814abb02afcb75633e34887ac9302ecf9ab2 (patch) | |
tree | f0cecb2ec845ef909b309074350bdb30d9557981 /gcc/rtl.c | |
parent | 378ef472dfc0937d69441973eeccc96a5dc3699c (diff) | |
download | gcc-643a814abb02afcb75633e34887ac9302ecf9ab2.tar.gz |
* rtl.c (rtx_equal_p_cb): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225747 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c index dccf298563b..b1b485ed60f 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -441,7 +441,7 @@ rtx_equal_p_cb (const_rtx x, const_rtx y, rtx_equal_p_callback_function cb) case DEBUG_PARAMETER_REF: return DEBUG_PARAMETER_REF_DECL (x) - == DEBUG_PARAMETER_REF_DECL (x); + == DEBUG_PARAMETER_REF_DECL (y); case ENTRY_VALUE: return rtx_equal_p_cb (ENTRY_VALUE_EXP (x), ENTRY_VALUE_EXP (y), cb); |