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/function.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/function.c')
-rw-r--r-- | gcc/function.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gcc/function.c b/gcc/function.c index 4141c413264..6a9bdc922f7 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -1453,8 +1453,8 @@ put_var_into_stack (decl) return; if (current_function_check_memory_usage) - emit_library_call (chkr_set_right_libfunc, 1, VOIDmode, 3, - XEXP (reg, 0), Pmode, + emit_library_call (chkr_set_right_libfunc, LCT_CONST_MAKE_BLOCK, VOIDmode, + 3, XEXP (reg, 0), Pmode, GEN_INT (GET_MODE_SIZE (GET_MODE (reg))), TYPE_MODE (sizetype), GEN_INT (MEMORY_USE_RW), @@ -4684,7 +4684,8 @@ assign_parms (fndecl) store_expr (parm, copy, 0); emit_move_insn (parmreg, XEXP (copy, 0)); if (current_function_check_memory_usage) - emit_library_call (chkr_set_right_libfunc, 1, VOIDmode, 3, + emit_library_call (chkr_set_right_libfunc, + LCT_CONST_MAKE_BLOCK, VOIDmode, 3, XEXP (copy, 0), Pmode, GEN_INT (int_size_in_bytes (type)), TYPE_MODE (sizetype), @@ -4848,8 +4849,8 @@ assign_parms (fndecl) if (current_function_check_memory_usage) { push_to_sequence (conversion_insns); - emit_library_call (chkr_set_right_libfunc, 1, VOIDmode, 3, - XEXP (stack_parm, 0), Pmode, + emit_library_call (chkr_set_right_libfunc, LCT_CONST_MAKE_BLOCK, + VOIDmode, 3, XEXP (stack_parm, 0), Pmode, GEN_INT (GET_MODE_SIZE (GET_MODE (entry_parm))), TYPE_MODE (sizetype), |