diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-08 06:26:49 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-08 06:26:49 +0000 |
commit | 85c2519d82cbb6153fccb19425c5997ada749d9f (patch) | |
tree | 66c2d46581f98fae4a59bc0bfed2cba0663abe12 /gcc/optabs.c | |
parent | e5f55ef4f5d1456aa8b751e34974b8c023098fe7 (diff) | |
download | gcc-85c2519d82cbb6153fccb19425c5997ada749d9f.tar.gz |
* config.gcc (i[34567]86-*-sco3.2v4*, i[34567]86-*-sco*):
Delete stanzas.
* config/i386/sco.h, config/i386/sco4.h, config/i386/scodbx.h,
config/i386/sco4dbx.h, config/i386/x-sco4: Delete file.
* optabs.c: Delete #ifdef BROKEN_LDEXP block.
* POTFILES.in: Remove config/i386/sco.h, config/i386/sco4.h,
config/i386/sco4dbx.h, and config/i386/scodbx.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41912 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index c6da81592fd..0403dbf17dc 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -4909,23 +4909,6 @@ init_optabs () ggc_add_rtx_root (libfunc_table, LTI_MAX); } -#ifdef BROKEN_LDEXP - -/* SCO 3.2 apparently has a broken ldexp. */ - -double -ldexp(x,n) - double x; - int n; -{ - if (n > 0) - while (n--) - x *= 2; - - return x; -} -#endif /* BROKEN_LDEXP */ - #ifdef HAVE_conditional_trap /* The insn generating function can not take an rtx_code argument. TRAP_RTX is used as an rtx argument. Its code is replaced with |