From 159c2aedc68ef2d82cb9adcd668bf883b519a14f Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Mon, 11 Jul 1994 22:37:14 +0000 Subject: [PATCH] (init_optabs): Allow target specific libcalls with INIT_TARGET_OPTABS. From-SVN: r7725 --- gcc/optabs.c | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.30.2