diff options
author | Richard Henderson <rth@cygnus.com> | 1999-10-26 13:31:33 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-10-26 13:31:33 -0700 |
commit | b517dcd29efdce45944072b01e562887bbca276f (patch) | |
tree | 2e876a62a9541149c6234b5a2f080f4cc6a85eb3 /gcc | |
parent | 1d5d552e7b0078b75308ac431b9bdf00fd5888e0 (diff) | |
download | gcc-b517dcd29efdce45944072b01e562887bbca276f.zip gcc-b517dcd29efdce45944072b01e562887bbca276f.tar.gz gcc-b517dcd29efdce45944072b01e562887bbca276f.tar.bz2 |
alpha.h (TARGET_MEM_FUNCTIONS): Define here.
* alpha.h (TARGET_MEM_FUNCTIONS): Define here.
* linux.h, netbsd.h, vms.h: Not here.
From-SVN: r30200
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.h | 3 | ||||
-rw-r--r-- | gcc/config/alpha/linux.h | 3 | ||||
-rw-r--r-- | gcc/config/alpha/netbsd.h | 3 | ||||
-rw-r--r-- | gcc/config/alpha/vms.h | 3 |
5 files changed, 8 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7c42211..246060d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 26 13:30:35 1999 Richard Henderson <rth@cygnus.com> + + * alpha.h (TARGET_MEM_FUNCTIONS): Define here. + * linux.h, netbsd.h, vms.h: Not here. + 1999-10-26 Gavin Romig-Koch <gavin@cygnus.com> * config/mips/mips.h (ISA_HAS_64BIT_REGS,ISA_HAS_BRANCHLIKELY, diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 0284110..5e7625a 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -2505,3 +2505,6 @@ do { \ /* The system headers under Alpha systems are generally C++-aware. */ #define NO_IMPLICIT_EXTERN_C + +/* Generate calls to memcpy, etc., not bcopy, etc. */ +#define TARGET_MEM_FUNCTIONS 1 diff --git a/gcc/config/alpha/linux.h b/gcc/config/alpha/linux.h index b8eb9e9..fe416e2 100644 --- a/gcc/config/alpha/linux.h +++ b/gcc/config/alpha/linux.h @@ -31,9 +31,6 @@ SUB_CPP_PREDEFINES #undef LIB_SPEC #define LIB_SPEC "%{pg:-lgmon} %{pg:-lc_p} %{!pg:-lc}" -/* Generate calls to memcpy, etc., not bcopy, etc. */ -#define TARGET_MEM_FUNCTIONS 1 - #undef FUNCTION_PROFILER #define FUNCTION_PROFILER(FILE, LABELNO) \ fputs ("\tlda $28,_mcount\n\tjsr $28,($28),_mcount\n", (FILE)) diff --git a/gcc/config/alpha/netbsd.h b/gcc/config/alpha/netbsd.h index 5189064..15dcadb 100644 --- a/gcc/config/alpha/netbsd.h +++ b/gcc/config/alpha/netbsd.h @@ -28,9 +28,6 @@ Boston, MA 02111-1307, USA. */ #undef LIB_SPEC #define LIB_SPEC "%{pg:-lgmon} %{pg:-lc_p} %{!pg:-lc}" -/* Generate calls to memcpy, etc., not bcopy, etc. */ -#define TARGET_MEM_FUNCTIONS - #undef FUNCTION_PROFILER #define FUNCTION_PROFILER(FILE, LABELNO) \ fputs ("\tlda $28,_mcount\n\tjsr $28,($28),_mcount\n", (FILE)) diff --git a/gcc/config/alpha/vms.h b/gcc/config/alpha/vms.h index 4d9bb1b..c142002 100644 --- a/gcc/config/alpha/vms.h +++ b/gcc/config/alpha/vms.h @@ -61,9 +61,6 @@ Boston, MA 02111-1307, USA. */ #define PTRDIFF_TYPE "int" */ -/* Use memcpy for structure copying, and so forth. */ -#define TARGET_MEM_FUNCTIONS - /* By default, allow $ to be part of an identifier. */ #define DOLLARS_IN_IDENTIFIERS 2 |