Commit fb95c8c9 by Jim Wilson Committed by Jim Wilson

Fix m68k build failure.

	* except.c (expand_builtin_eh_stub): Call emit_move_insn rather than
	calling gen_rtx_SET.

From-SVN: r20431
parent 95009288
Thu Jun 11 17:14:15 1998 Jim Wilson <wilson@cygnus.com>
* 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 <edelsohn@mhpcc.edu> Thu Jun 11 18:45:49 1998 David Edelsohn <edelsohn@mhpcc.edu>
* config/rs6000/x-aix43 (AR): Delete. * config/rs6000/x-aix43 (AR): Delete.
......
...@@ -2455,10 +2455,10 @@ expand_builtin_eh_stub () ...@@ -2455,10 +2455,10 @@ expand_builtin_eh_stub ()
to pick out the handler field (first element), and jump to there, to pick out the handler field (first element), and jump to there,
leaving the pointer to _eh_conext in the same hardware register. */ 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; MEM_IN_STRUCT_P (temp) = 1;
RTX_UNCHANGING_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_insn (gen_rtx_USE (Pmode, handler));
emit_indirect_jump (offset); emit_indirect_jump (offset);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment