CVS commit: [matt-nb5-mips64] src/gnu/usr.bin/gcc4/arch

2010-05-11 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Tue May 11 06:01:12 UTC 2010

Modified Files:
src/gnu/usr.bin/gcc4/arch/mips64eb [matt-nb5-mips64]: tm.h
src/gnu/usr.bin/gcc4/arch/mips64el [matt-nb5-mips64]: tm.h

Log Message:
Add MASK_SOFT_FLOAT to TARGET_CPU_DEFAULT for mips64


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/gnu/usr.bin/gcc4/arch/mips64el/tm.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h
diff -u src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h:1.1.2.2 src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h:1.1.2.3
--- src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h:1.1.2.2	Wed Dec  9 07:28:24 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64eb/tm.h	Tue May 11 06:01:11 2010
@@ -4,7 +4,7 @@
 
 #ifndef GCC_TM_H
 #define GCC_TM_H
-#define TARGET_CPU_DEFAULT (((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES))|MASK_EXPLICIT_RELOCS)
+#define TARGET_CPU_DEFAULT (((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES|MASK_SOFT_FLOAT))|MASK_EXPLICIT_RELOCS)
 #ifndef NETBSD_ENABLE_PTHREADS
 # define NETBSD_ENABLE_PTHREADS
 #endif

Index: src/gnu/usr.bin/gcc4/arch/mips64el/tm.h
diff -u src/gnu/usr.bin/gcc4/arch/mips64el/tm.h:1.1.2.2 src/gnu/usr.bin/gcc4/arch/mips64el/tm.h:1.1.2.3
--- src/gnu/usr.bin/gcc4/arch/mips64el/tm.h:1.1.2.2	Wed Dec  9 04:37:29 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64el/tm.h	Tue May 11 06:01:11 2010
@@ -4,7 +4,7 @@
 
 #ifndef GCC_TM_H
 #define GCC_TM_H
-#define TARGET_CPU_DEFAULT (((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES))|MASK_EXPLICIT_RELOCS)
+#define TARGET_CPU_DEFAULT (((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES|MASK_SOFT_FLOAT))|MASK_EXPLICIT_RELOCS)
 #ifndef TARGET_ENDIAN_DEFAULT
 # define TARGET_ENDIAN_DEFAULT 0
 #endif



CVS commit: [matt-nb5-mips64] src/gnu/usr.bin/gcc4/arch

2010-05-10 Thread Matt Thomas
Module Name:src
Committed By:   matt
Date:   Mon May 10 16:08:56 UTC 2010

Modified Files:
src/gnu/usr.bin/gcc4/arch/mips64eb [matt-nb5-mips64]: defs.mk
src/gnu/usr.bin/gcc4/arch/mips64el [matt-nb5-mips64]: defs.mk

Log Message:
Add MASK_SOFT_FLOAT to G_target_cpu_default


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk
cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk
diff -u src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk:1.1.2.2 src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk:1.1.2.3
--- src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk:1.1.2.2	Wed Dec  9 07:28:24 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64eb/defs.mk	Mon May 10 16:08:56 2010
@@ -35,7 +35,7 @@
 G_host_xm_file=
 G_host_xm_defines=
 G_tm_p_file=
-G_target_cpu_default=((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES))|MASK_EXPLICIT_RELOCS
+G_target_cpu_default=((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES|MASK_SOFT_FLOAT))|MASK_EXPLICIT_RELOCS
 G_TM_H=tm.h  options.h ${GNUHOSTDIST}/gcc/config/elfos.h ${GNUHOSTDIST}/gcc/config/mips/mips.h ${GNUHOSTDIST}/gcc/config/mips/elf.h ${GNUHOSTDIST}/gcc/config/netbsd.h ${GNUHOSTDIST}/gcc/config/netbsd-elf.h ${GNUHOSTDIST}/gcc/config/mips/netbsd.h ${GNUHOSTDIST}/gcc/config/mips/netbsd64.h ${GNUHOSTDIST}/gcc/defaults.h insn-constants.h insn-flags.h options.h
 G_ALL_OPT_FILES=${GNUHOSTDIST}/gcc/c.opt ${GNUHOSTDIST}/gcc/common.opt ${GNUHOSTDIST}/gcc/config/mips/mips.opt
 G_tm_file_list=options.h ${GNUHOSTDIST}/gcc/config/elfos.h ${GNUHOSTDIST}/gcc/config/mips/mips.h ${GNUHOSTDIST}/gcc/config/mips/elf.h ${GNUHOSTDIST}/gcc/config/netbsd.h ${GNUHOSTDIST}/gcc/config/netbsd-elf.h ${GNUHOSTDIST}/gcc/config/mips/netbsd.h ${GNUHOSTDIST}/gcc/config/mips/netbsd64.h ${GNUHOSTDIST}/gcc/defaults.h

Index: src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk
diff -u src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.2 src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.3
--- src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.2	Wed Dec  9 04:37:29 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk	Mon May 10 16:08:56 2010
@@ -35,7 +35,7 @@
 G_host_xm_file=
 G_host_xm_defines=
 G_tm_p_file=
-G_target_cpu_default=((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES))|MASK_EXPLICIT_RELOCS
+G_target_cpu_default=((MASK_ABICALLS|MASK_64BIT|MASK_FLOAT64|MASK_SPLIT_ADDRESSES|MASK_SOFT_FLOAT))|MASK_EXPLICIT_RELOCS
 G_TM_H=tm.h  options.h ${GNUHOSTDIST}/gcc/config/elfos.h ${GNUHOSTDIST}/gcc/config/mips/mips.h ${GNUHOSTDIST}/gcc/config/mips/elf.h ${GNUHOSTDIST}/gcc/config/netbsd.h ${GNUHOSTDIST}/gcc/config/netbsd-elf.h ${GNUHOSTDIST}/gcc/config/mips/netbsd.h ${GNUHOSTDIST}/gcc/config/mips/netbsd64.h ${GNUHOSTDIST}/gcc/defaults.h insn-constants.h insn-flags.h options.h
 G_ALL_OPT_FILES=${GNUHOSTDIST}/gcc/c.opt ${GNUHOSTDIST}/gcc/common.opt ${GNUHOSTDIST}/gcc/config/mips/mips.opt
 G_tm_file_list=options.h ${GNUHOSTDIST}/gcc/config/elfos.h ${GNUHOSTDIST}/gcc/config/mips/mips.h ${GNUHOSTDIST}/gcc/config/mips/elf.h ${GNUHOSTDIST}/gcc/config/netbsd.h ${GNUHOSTDIST}/gcc/config/netbsd-elf.h ${GNUHOSTDIST}/gcc/config/mips/netbsd.h ${GNUHOSTDIST}/gcc/config/mips/netbsd64.h ${GNUHOSTDIST}/gcc/defaults.h



CVS commit: [matt-nb5-mips64] src/gnu/usr.bin/gcc4

2009-12-08 Thread matthew green
Module Name:src
Committed By:   mrg
Date:   Wed Dec  9 04:37:29 UTC 2009

Modified Files:
src/gnu/usr.bin/gcc4/arch/mips64el [matt-nb5-mips64]: configargs.h
defs.mk multilib.h tm.h
src/gnu/usr.bin/gcc4/libcpp/arch/mips64el [matt-nb5-mips64]: config.h

Log Message:
re-generate these files with mknative-gcc.


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 \
src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h \
src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk \
src/gnu/usr.bin/gcc4/arch/mips64el/multilib.h \
src/gnu/usr.bin/gcc4/arch/mips64el/tm.h
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 \
src/gnu/usr.bin/gcc4/libcpp/arch/mips64el/config.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h
diff -u src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h:1.1.2.1 src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h:1.1.2.2
--- src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h:1.1.2.1	Sun Aug 23 20:48:03 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64el/configargs.h	Wed Dec  9 04:37:29 2009
@@ -1,9 +1,9 @@
 /* This file is automatically generated.  DO NOT EDIT! */
-/* Generated from: 	NetBSD: mknative-gcc,v 1.23 2008/02/08 18:06:48 skrll Exp  */
+/* Generated from: 	NetBSD: mknative-gcc,v 1.25 2008/10/11 05:03:44 mrg Exp  */
 /* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp  */
 
 /* Generated automatically. */
-static const char configuration_arguments[] = /usr/src/tools/gcc/../../gnu/dist/gcc4/configure --enable-long-long --disable-multilib --enable-threads --disable-symvers --build=x86_64-unknown-netbsd4.99.72 --host=mips64el--netbsd --target=mips64el--netbsd --enable-__cxa_atexit;
+static const char configuration_arguments[] = /usr/5/src-mips64/tools/gcc/../../gnu/dist/gcc4/configure --enable-long-long --disable-multilib --enable-threads --disable-symvers --build=x86_64-unknown-netbsd5.0. --host=mips64el--netbsd --target=mips64el--netbsd --enable-__cxa_atexit;
 static const char thread_model[] = posix;
 
 static const struct {
Index: src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk
diff -u src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.1 src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.2
--- src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk:1.1.2.1	Sun Aug 23 20:48:03 2009
+++ src/gnu/usr.bin/gcc4/arch/mips64el/defs.mk	Wed Dec  9 04:37:29 2009
@@ -1,5 +1,5 @@
 # This file is automatically generated.  DO NOT EDIT!
-# Generated from: 	NetBSD: mknative-gcc,v 1.22 2006/06/25 03:06:15 mrg Exp 
+# Generated from: 	NetBSD: mknative-gcc,v 1.25 2008/10/11 05:03:44 mrg Exp 
 # Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp 
 #
 G_BUILD_EARLY_SUPPORT=gensupport.o dummy-conditions.o
@@ -29,16 +29,16 @@
 G_GTFILES_SRCDIR=${GNUHOSTDIST}/gcc
 G_GTFILES_FILES_FILES=${GNUHOSTDIST}/gcc/cp/rtti.c  ${GNUHOSTDIST}/gcc/cp/mangle.c  ${GNUHOSTDIST}/gcc/cp/name-lookup.h  ${GNUHOSTDIST}/gcc/cp/name-lookup.c  ${GNUHOSTDIST}/gcc/cp/cp-tree.h  ${GNUHOSTDIST}/gcc/cp/decl.h  ${GNUHOSTDIST}/gcc/cp/call.c  ${GNUHOSTDIST}/gcc/cp/decl.c  ${GNUHOSTDIST}/gcc/cp/decl2.c  ${GNUHOSTDIST}/gcc/cp/pt.c  ${GNUHOSTDIST}/gcc/cp/repo.c  ${GNUHOSTDIST}/gcc/cp/semantics.c  ${GNUHOSTDIST}/gcc/cp/tree.c  ${GNUHOSTDIST}/gcc/cp/parser.c  ${GNUHOSTDIST}/gcc/cp/method.c  ${GNUHOSTDIST}/gcc/cp/typeck2.c  ${GNUHOSTDIST}/gcc/c-common.c  ${GNUHOSTDIST}/gcc/c-common.h  ${GNUHOSTDIST}/gcc/c-lex.c  ${GNUHOSTDIST}/gcc/c-pragma.c  ${GNUHOSTDIST}/gcc/cp/class.c  ${GNUHOSTDIST}/gcc/cp/cp-objcp-common.c  ${GNUHOSTDIST}/gcc/objc/objc-act.h  ${GNUHOSTDIST}/gcc/c-parser.c  ${GNUHOSTDIST}/gcc/c-tree.h  ${GNUHOSTDIST}/gcc/c-decl.c  ${GNUHOSTDIST}/gcc/c-objc-common.c  ${GNUHOSTDIST}/gcc/c-common.c  ${GNUHOSTDIST}/gcc/c-common.h  ${GNUHOSTDIST}/gcc/c-pragma.c  ${GNUHOSTD
 IST}/gcc/objc/objc-act.c  ${GNUHOSTDIST}/gcc/c-lang.c  ${GNUHOSTDIST}/gcc/c-tree.h  ${GNUHOSTDIST}/gcc/c-decl.c  ${GNUHOSTDIST}/gcc/c-common.c  ${GNUHOSTDIST}/gcc/c-common.h  ${GNUHOSTDIST}/gcc/c-pragma.c  ${GNUHOSTDIST}/gcc/c-objc-common.c  ${GNUHOSTDIST}/gcc/c-parser.c 
 G_GTFILES_FILES_LANGS=cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  cp  objc  objc  objc  objc  objc  objc  objc  objc  objc  c  c  c  c  c  c  c  c 
-G_GTFILES=${GNUHOSTDIST}/gcc/input.h ${GNUHOSTDIST}/gcc/coretypes.h ${GNUHOSTDIST}/gcc/../libcpp/include/line-map.h ${GNUHOSTDIST}/gcc/../libcpp/include/cpplib.h ${GNUHOSTDIST}/gcc/../libcpp/include/cpp-id-data.h auto-host.h ${GNUHOSTDIST}/gcc/../include/ansidecl.h options.h ${GNUHOSTDIST}/gcc/config/elfos.h ${GNUHOSTDIST}/gcc/config/mips/mips.h ${GNUHOSTDIST}/gcc/config/mips/elf.h ${GNUHOSTDIST}/gcc/config/netbsd.h ${GNUHOSTDIST}/gcc/config/netbsd-elf.h ${GNUHOSTDIST}/gcc/config/mips/netbsd.h ${GNUHOSTDIST}/gcc/defaults.h ${GNUHOSTDIST}/gcc/../include/hashtab.h ${GNUHOSTDIST}/gcc/../include/splay-tree.h ${GNUHOSTDIST}/gcc/bitmap.h