From: Finn Thain Date: Sun, 12 Dec 2010 14:03:55 +0000 (+0000) Subject: Author: Finn Thain X-Git-Tag: releases/gcc-4.6.0~1963 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcac2e64b306166f78fd8484009268916148a19d;p=thirdparty%2Fgcc.git Author: Finn Thain PR target/46179 * gcc/config/m68k/m68k.c (handle_move_double): Insert calls to m68k_final_prescan_insn to clean up @TLS operand syntax. From-SVN: r167724 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 038980644aee..ca7b49da7c45 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-12-12 Finn Thain + + PR target/46179 + * config/m68k/m68k.c (handle_move_double): Insert calls to + m68k_final_prescan_insn to clean up @TLS operand syntax. + 2010-12-10 Sebastian Pop PR tree-optimization/43023 @@ -524,7 +530,7 @@ blocks will be created. Update dominator info. (sel_redirect_edge_and_branch): Update dominator info when basic blocks do not become unreachable. - (sel_remove_loop_preheader): Update dominator info. + (sel_remove_loop_preheader): Update dominator info. 2010-12-07 Richard Guenther diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index eedf009b1e29..b8e9ff26680c 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -3512,6 +3512,7 @@ handle_move_double (rtx operands[2], /* Normal case: do the two words, low-numbered first. */ + m68k_final_prescan_insn (NULL, operands, 2); handle_movsi (operands); /* Do the middle one of the three words for long double */ @@ -3522,6 +3523,7 @@ handle_move_double (rtx operands[2], if (addreg1) handle_reg_adjust (addreg1, 4); + m68k_final_prescan_insn (NULL, middlehalf, 2); handle_movsi (middlehalf); } @@ -3532,6 +3534,7 @@ handle_move_double (rtx operands[2], handle_reg_adjust (addreg1, 4); /* Do that word. */ + m68k_final_prescan_insn (NULL, latehalf, 2); handle_movsi (latehalf); /* Undo the adds we just did. */