diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-17 12:45:51 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-17 12:45:51 +0000 |
commit | 2c5d421bfbe49c7ec0157c716e70f0089515cc48 (patch) | |
tree | 278cde0ad17613ffacff0e59525f96e19d129f9f /gcc/except.c | |
parent | f6f723c25da8298345f87ddfba0c451a0cfcc6fe (diff) | |
download | gcc-2c5d421bfbe49c7ec0157c716e70f0089515cc48.tar.gz |
Bring back equal forms for libcalls
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36469 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index ad2e31047f0..fb697a845e7 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1363,7 +1363,7 @@ 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, + x = emit_library_call_value (setjmp_libfunc, NULL_RTX, LCT_CONST, TYPE_MODE (integer_type_node), 1, buf, Pmode); /* If we come back here for a catch, transfer control to the handler. */ @@ -1761,7 +1761,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, TYPE_MODE (integer_type_node), + LCT_NORMAL, + TYPE_MODE (integer_type_node), 1, rtime_address, Pmode); /* Did the function return true? */ |