Commit aefe40b1 by Donn Terry Committed by Jeff Law

except.c (expand_eh_return): Force pointers to proper mode if POINTERS_EXTEND_UNSIGNED.

        * except.c (expand_eh_return): Force pointers to proper mode if
        POINTERS_EXTEND_UNSIGNED.

From-SVN: r26477
parent 6b400b21
Thu Apr 15 20:46:57 1999 Donn Terry (donn@interix.com)
* except.c (expand_eh_return): Force pointers to proper mode if
POINTERS_EXTEND_UNSIGNED.
Thu Apr 15 23:13:35 1999 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.h: Tweaked comment formatting.
......
......@@ -2790,6 +2790,12 @@ expand_eh_return ()
return;
eh_regs (&reg1, &reg2, &reg3, 1);
#ifdef POINTERS_EXTEND_UNSIGNED
eh_return_context = convert_memory_address (Pmode, eh_return_context);
eh_return_stack_adjust =
convert_memory_address (Pmode, eh_return_stack_adjust);
eh_return_handler = convert_memory_address (Pmode, eh_return_handler);
#endif
emit_move_insn (reg1, eh_return_context);
emit_move_insn (reg2, eh_return_stack_adjust);
emit_move_insn (reg3, eh_return_handler);
......
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