diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-11 19:45:32 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-11 19:45:32 +0000 |
commit | 62f615b170aa1324147464166c5fd80c5ba52cc0 (patch) | |
tree | b0e7821af42b01b42543a20a94b4ac966bf4eff5 /gcc/expr.c | |
parent | 516dd9949381b3efc07962eb547e9142f6aedca1 (diff) | |
download | ppe42-gcc-62f615b170aa1324147464166c5fd80c5ba52cc0.tar.gz ppe42-gcc-62f615b170aa1324147464166c5fd80c5ba52cc0.zip |
* libfuncs.h (LTI_setbits, LTI_gcov_flush, LTI_gcov_init): New.
(setbits_libfunc, gcov_flush_libfunc, gcov_init_libfunc): New.
* optabs.c (init_optabs): Initialize them.
(init_libfuncs): Use init_one_libfunc.
* calls.c (expand_call): Use gcov_flush_libfunc.
* expr.c (store_constructor): Use setbits_libfunc.
* function.c (expand_main_function): Use init_one_libfunc.
* profile.c (create_profiler): Use gcov_init_libfunc and DECL_RTL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 3d8903da700..caf35cdaf49 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -5450,8 +5450,8 @@ store_constructor (exp, target, cleared, size) TYPE_MODE (sizetype)); } else - emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__setbits"), - LCT_NORMAL, VOIDmode, 4, XEXP (targetx, 0), + emit_library_call (setbits_libfunc, LCT_NORMAL, + VOIDmode, 4, XEXP (targetx, 0), Pmode, bitlength_rtx, TYPE_MODE (sizetype), startbit_rtx, TYPE_MODE (sizetype), endbit_rtx, TYPE_MODE (sizetype)); |