diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-07-11 22:37:14 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-07-11 22:37:14 +0000 |
commit | 76915553e9bb1063a0f28ced82b75a7915ac8faf (patch) | |
tree | 93cd09b83a911db79470dc9ff0941a517e720186 /gcc/optabs.c | |
parent | cf80c04b0503744770aa98f96df0442a1d34297b (diff) | |
download | gcc-76915553e9bb1063a0f28ced82b75a7915ac8faf.tar.gz |
(init_optabs): Allow target specific libcalls with INIT_TARGET_OPTABS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7725 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index 79f47681c30..427ccf46bb3 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -4075,6 +4075,11 @@ init_optabs () #ifdef FIXUNS_TRUNCTFSI2_LIBCALL fixunstfsi_libfunc = gen_rtx (SYMBOL_REF, Pmode, FIXUNS_TRUNCTFSI2_LIBCALL); #endif + +#ifdef INIT_TARGET_OPTABS + /* Allow the target to add more libcalls or rename some, etc. */ + INIT_TARGET_OPTABS; +#endif } #ifdef BROKEN_LDEXP |