diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2000-11-09 07:45:15 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2000-11-09 07:45:15 +0000 |
commit | 2e09e75ade29bde9224eea1629ed0091f74e7a08 (patch) | |
tree | a19a7f9c7c509696e4e2ed16a5ea0eeff9cc070d /gcc/config.in | |
parent | 03fb4780dfb30b188eba1631ef4ab92112c8f4e1 (diff) | |
download | gcc-2e09e75ade29bde9224eea1629ed0091f74e7a08.zip gcc-2e09e75ade29bde9224eea1629ed0091f74e7a08.tar.gz gcc-2e09e75ade29bde9224eea1629ed0091f74e7a08.tar.bz2 |
calls.c (expand_call, [...]): Use memcpy () instead of bcopy ().
* calls.c (expand_call, emit_library_call_value_1), collect2.c
(scan_prog_file), config/a29k/a29k.c (print_operand),
config/sparc/sparc.c (order_regs_for_local_alloc): Use memcpy ()
instead of bcopy ().
* real.h: Use memcmp () instead of bcmp ().
* config/m88k/m88k.c (m88k_layout_frame), config/sh/sh.c
(split_branches), config/sparc/sparc.c (ultra_flush_pipeline,
ultrasparc_sched_init, ultrasparc_sched_reorder),
config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Use memset ()
instead of bzero ().
* config/vax/xm-xms.h (FILE_NAME_NONDIRECTORY): Use strrchr ()
instead of rindex ().
* configure.in: Don't check for bzero, bcmp, index or rindex.
* configure, config.in: Regenerate.
* system.h: Don't include declarations for bzero, bcmp, index or
rindex.
* config/i386/xm-beos.h, config/rs6000/xm-beos.h: Don't define
bzero, bcmp, index or rindex.
java:
* parse.y (create_new_parser_context): Use memset () instead of
bzero ().
From-SVN: r37334
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc/config.in b/gcc/config.in index b2a09f6..4ad8f14 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -120,18 +120,12 @@ /* Define if you have the atoq function. */ #undef HAVE_ATOQ -/* Define if you have the bcmp function. */ -#undef HAVE_BCMP - /* Define if you have the bcopy function. */ #undef HAVE_BCOPY /* Define if you have the bsearch function. */ #undef HAVE_BSEARCH -/* Define if you have the bzero function. */ -#undef HAVE_BZERO - /* Define if you have the dcgettext function. */ #undef HAVE_DCGETTEXT @@ -159,9 +153,6 @@ /* Define if you have the iconv function. */ #undef HAVE_ICONV -/* Define if you have the index function. */ -#undef HAVE_INDEX - /* Define if you have the isascii function. */ #undef HAVE_ISASCII @@ -183,9 +174,6 @@ /* Define if you have the putenv function. */ #undef HAVE_PUTENV -/* Define if you have the rindex function. */ -#undef HAVE_RINDEX - /* Define if you have the setenv function. */ #undef HAVE_SETENV @@ -355,18 +343,6 @@ #undef HAVE_DECL_BCOPY /* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_BZERO - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_BCMP - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_INDEX - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_RINDEX - -/* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_GETENV /* Define to 1 if we found this declaration otherwise define to 0. */ |