diff options
author | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
---|---|---|
committer | Roman Yeryomin <roman@advem.lv> | 2013-05-26 01:02:55 +0300 |
commit | 342045a35b1981a89e4bc80842b10c065e1050da (patch) | |
tree | 4140720b20e8d641c11da882010d6130a75fef21 /toolchain/gcc/patches/llvm/952-bug_34762.patch | |
parent | 7338133dde8238afce34676214b494c8db96689b (diff) | |
parent | 1a116ce7818ecee5d167a9c0ebb1a0feca9120e6 (diff) |
Merge trunk into realtek-unstable
Conflicts:
Config.in
feeds.conf.default
package/base-files/files/etc/hotplug2-common.rules
package/network/config/netifd/files/etc/init.d/network
Diffstat (limited to 'toolchain/gcc/patches/llvm/952-bug_34762.patch')
-rw-r--r-- | toolchain/gcc/patches/llvm/952-bug_34762.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/toolchain/gcc/patches/llvm/952-bug_34762.patch b/toolchain/gcc/patches/llvm/952-bug_34762.patch deleted file mode 100644 index f17d8d2e2..000000000 --- a/toolchain/gcc/patches/llvm/952-bug_34762.patch +++ /dev/null @@ -1,49 +0,0 @@ -http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34762 - ---- a/gcc/reload.c -+++ b/gcc/reload.c -@@ -4817,7 +4817,7 @@ find_reloads_address (enum machine_mode - find_reloads_address (GET_MODE (tem), &tem, XEXP (tem, 0), - &XEXP (tem, 0), opnum, - ADDR_TYPE (type), ind_levels, insn); -- if (tem != orig) -+ if (!rtx_equal_p (tem, orig)) - push_reg_equiv_alt_mem (regno, tem); - } - /* We can avoid a reload if the register's equivalent memory -@@ -5617,7 +5617,7 @@ find_reloads_address_1 (enum machine_mod - RELOAD_OTHER, - ind_levels, insn); - -- if (tem != orig) -+ if (!rtx_equal_p (tem, orig)) - push_reg_equiv_alt_mem (regno, tem); - - /* Then reload the memory location into a base -@@ -5684,7 +5684,7 @@ find_reloads_address_1 (enum machine_mod - find_reloads_address (GET_MODE (tem), &tem, XEXP (tem, 0), - &XEXP (tem, 0), opnum, type, - ind_levels, insn); -- if (tem != orig) -+ if (!rtx_equal_p (tem, orig)) - push_reg_equiv_alt_mem (regno, tem); - /* Put this inside a new increment-expression. */ - x = gen_rtx_fmt_e (GET_CODE (x), GET_MODE (x), tem); -@@ -5876,7 +5876,7 @@ find_reloads_address_1 (enum machine_mod - find_reloads_address (GET_MODE (x), &x, XEXP (x, 0), - &XEXP (x, 0), opnum, ADDR_TYPE (type), - ind_levels, insn); -- if (x != tem) -+ if (!rtx_equal_p (x, tem)) - push_reg_equiv_alt_mem (regno, x); - } - } -@@ -6104,7 +6104,7 @@ find_reloads_subreg_address (rtx x, int - XEXP (tem, 0), &XEXP (tem, 0), - opnum, type, ind_levels, insn); - /* ??? Do we need to handle nonzero offsets somehow? */ -- if (!offset && tem != orig) -+ if (!offset && !rtx_equal_p (tem, orig)) - push_reg_equiv_alt_mem (regno, tem); - - /* For some processors an address may be valid in the |