Commit a0ec56b7 by Herman A.J. ten Brugge Committed by Richard Henderson

except.c (start_dynamic_handler): Use TYPE_MODE (integer_type_node) instead of SImode.

        * except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
        instead of SImode.
        (start_catch_handler) : Same.

From-SVN: r32074
parent db01dcfa
2000-02-19 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
instead of SImode.
(start_catch_handler) : Same.
2000-02-19 Brad Lucier (lucier@math.purdue.edu) 2000-02-19 Brad Lucier (lucier@math.purdue.edu)
* Makefile.in: Have flow.o depend on $(EXPR_H) * Makefile.in: Have flow.o depend on $(EXPR_H)
......
...@@ -1347,7 +1347,8 @@ start_dynamic_handler () ...@@ -1347,7 +1347,8 @@ start_dynamic_handler ()
buf = plus_constant (XEXP (arg, 0), GET_MODE_SIZE (Pmode)*2); buf = plus_constant (XEXP (arg, 0), GET_MODE_SIZE (Pmode)*2);
#ifdef DONT_USE_BUILTIN_SETJMP #ifdef DONT_USE_BUILTIN_SETJMP
x = emit_library_call_value (setjmp_libfunc, NULL_RTX, 1, SImode, 1, x = emit_library_call_value (setjmp_libfunc, NULL_RTX, 1,
TYPE_MODE (integer_type_node), 1,
buf, Pmode); buf, Pmode);
/* If we come back here for a catch, transfer control to the handler. */ /* If we come back here for a catch, transfer control to the handler. */
jumpif_rtx (x, ehstack.top->entry->exception_handler_label); jumpif_rtx (x, ehstack.top->entry->exception_handler_label);
...@@ -1754,7 +1755,8 @@ start_catch_handler (rtime) ...@@ -1754,7 +1755,8 @@ start_catch_handler (rtime)
/* Now issue the call, and branch around handler if needed */ /* Now issue the call, and branch around handler if needed */
call_rtx = emit_library_call_value (eh_rtime_match_libfunc, NULL_RTX, call_rtx = emit_library_call_value (eh_rtime_match_libfunc, NULL_RTX,
0, SImode, 1, rtime_address, Pmode); 0, TYPE_MODE (integer_type_node),
1, rtime_address, Pmode);
/* Did the function return true? */ /* Did the function return true? */
emit_cmp_and_jump_insns (call_rtx, const0_rtx, EQ, NULL_RTX, emit_cmp_and_jump_insns (call_rtx, const0_rtx, EQ, NULL_RTX,
......
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