diff options
author | Richard Henderson <rth@redhat.com> | 2003-04-11 12:45:32 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-04-11 12:45:32 -0700 |
commit | 68d28100a03d7a4bb0f5763f6478c2c84bf4e2ab (patch) | |
tree | b0e7821af42b01b42543a20a94b4ac966bf4eff5 /gcc/calls.c | |
parent | 8d3f856e31650d9c61a53af7b243d9d96702fbbd (diff) | |
download | gcc-68d28100a03d7a4bb0f5763f6478c2c84bf4e2ab.zip gcc-68d28100a03d7a4bb0f5763f6478c2c84bf4e2ab.tar.gz gcc-68d28100a03d7a4bb0f5763f6478c2c84bf4e2ab.tar.bz2 |
libfuncs.h (LTI_setbits, [...]): New.
* 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.
From-SVN: r65478
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index f23b939..ffb8a21 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2635,9 +2635,7 @@ expand_call (exp, target, ignore) is subject to race conditions, just as with multithreaded programs. */ - emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__gcov_flush"), - LCT_ALWAYS_RETURN, - VOIDmode, 0); + emit_library_call (gcov_flush_libfunc, LCT_ALWAYS_RETURN, VOIDmode, 0); } /* Ensure current function's preferred stack boundary is at least |