summaryrefslogtreecommitdiff
path: root/gcc/except.c
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-11 17:15:02 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-11 17:15:02 +0000
commit461896e5aeaeb383d1d8ba3884be8a8e1b176f50 (patch)
treefe48ea36811044bcf9f9eb84a116f8da52570521 /gcc/except.c
parent779b7d35948e12028e5406831cb01b63e87472fc (diff)
downloadgcc-461896e5aeaeb383d1d8ba3884be8a8e1b176f50.tar.gz
Fix m68k build failure.
* except.c (expand_builtin_eh_stub): Call emit_move_insn rather than calling gen_rtx_SET. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r--gcc/except.c4
1 files changed, 2 insertions, 2 deletions
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);