aboutsummaryrefslogtreecommitdiff
path: root/gcc/libfuncs.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-04-11 12:45:32 -0700
committerRichard Henderson <rth@gcc.gnu.org>2003-04-11 12:45:32 -0700
commit68d28100a03d7a4bb0f5763f6478c2c84bf4e2ab (patch)
treeb0e7821af42b01b42543a20a94b4ac966bf4eff5 /gcc/libfuncs.h
parent8d3f856e31650d9c61a53af7b243d9d96702fbbd (diff)
downloadgcc-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/libfuncs.h')
-rw-r--r--gcc/libfuncs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/libfuncs.h b/gcc/libfuncs.h
index bb2aa17..79b7d42 100644
--- a/gcc/libfuncs.h
+++ b/gcc/libfuncs.h
@@ -44,6 +44,7 @@ enum libfunc_index
LTI_bcmp,
LTI_memset,
LTI_bzero,
+ LTI_setbits,
LTI_unwind_resume,
LTI_eh_personality,
@@ -143,6 +144,9 @@ enum libfunc_index
LTI_profile_function_entry,
LTI_profile_function_exit,
+ LTI_gcov_flush,
+ LTI_gcov_init,
+
LTI_MAX
};
@@ -171,6 +175,7 @@ extern GTY(()) rtx libfunc_table[LTI_MAX];
#define bcmp_libfunc (libfunc_table[LTI_bcmp])
#define memset_libfunc (libfunc_table[LTI_memset])
#define bzero_libfunc (libfunc_table[LTI_bzero])
+#define setbits_libfunc (libfunc_table[LTI_setbits])
#define unwind_resume_libfunc (libfunc_table[LTI_unwind_resume])
#define eh_personality_libfunc (libfunc_table[LTI_eh_personality])
@@ -271,4 +276,7 @@ extern GTY(()) rtx libfunc_table[LTI_MAX];
#define profile_function_entry_libfunc (libfunc_table[LTI_profile_function_entry])
#define profile_function_exit_libfunc (libfunc_table[LTI_profile_function_exit])
+#define gcov_flush_libfunc (libfunc_table[LTI_gcov_flush])
+#define gcov_init_libfunc (libfunc_table[LTI_gcov_init])
+
#endif /* GCC_LIBFUNCS_H */