diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-20 06:43:00 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-20 06:43:00 +0000 |
| commit | 4260381caec1f25dc2244651acc7d21061a425f1 (patch) | |
| tree | 71f9bc7c6b4d730419ed1f8db03c52659370d65e /gcc/except.c | |
| parent | c98bac56e5eb8f5bacda9e0ac4c420f33df85c38 (diff) | |
| download | ppe42-gcc-4260381caec1f25dc2244651acc7d21061a425f1.tar.gz ppe42-gcc-4260381caec1f25dc2244651acc7d21061a425f1.zip | |
* except.c (start_dynamic_handler) : Use TYPE_MODE (integer_type_node)
instead of SImode.
(start_catch_handler) : Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
| -rw-r--r-- | gcc/except.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index 8fdc9c9a764..2b841680802 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1347,7 +1347,8 @@ start_dynamic_handler () buf = plus_constant (XEXP (arg, 0), GET_MODE_SIZE (Pmode)*2); #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); /* If we come back here for a catch, transfer control to the handler. */ jumpif_rtx (x, ehstack.top->entry->exception_handler_label); @@ -1754,7 +1755,8 @@ start_catch_handler (rtime) /* Now issue the call, and branch around handler if needed */ 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? */ emit_cmp_and_jump_insns (call_rtx, const0_rtx, EQ, NULL_RTX, |

