From: Jim Wilson Date: Thu, 11 Jun 1998 17:15:02 +0000 (+0000) Subject: Fix m68k build failure. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fb95c8c95682269873f39994ce5c703c935f019f;p=gcc.git Fix m68k build failure. * except.c (expand_builtin_eh_stub): Call emit_move_insn rather than calling gen_rtx_SET. From-SVN: r20431 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1658c57a090..9c43cca5052 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Jun 11 17:14:15 1998 Jim Wilson + + * except.c (expand_builtin_eh_stub): Call emit_move_insn rather than + calling gen_rtx_SET. + Thu Jun 11 18:45:49 1998 David Edelsohn * config/rs6000/x-aix43 (AR): Delete. diff --git a/gcc/except.c b/gcc/except.c index 708fba9c1f3..e76f21c2b84 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -2455,10 +2455,10 @@ expand_builtin_eh_stub () to pick out the handler field (first element), and jump to there, leaving the pointer to _eh_conext in the same hardware register. */ - temp = gen_rtx_MEM (Pmode, handler); + temp = gen_rtx_MEM (Pmode, handler); MEM_IN_STRUCT_P (temp) = 1; RTX_UNCHANGING_P (temp) = 1; - emit_insn (gen_rtx_SET (Pmode, offset, temp)); + emit_move_insn (offset, temp); emit_insn (gen_rtx_USE (Pmode, handler)); emit_indirect_jump (offset);