diff options
author | David O'Brien <obrien@FreeBSD.org> | 2002-02-09 21:51:56 +0000 |
---|---|---|
committer | David O'Brien <obrien@gcc.gnu.org> | 2002-02-09 21:51:56 +0000 |
commit | 617e9ee588bee9f1cc349652ca0e88a98286392e (patch) | |
tree | bfa01b66c7914bcd7df0679d5d0cbcd96d662759 | |
parent | 6dfa4005a20fa09d0934dcb807ef2e24792468d2 (diff) | |
download | gcc-617e9ee588bee9f1cc349652ca0e88a98286392e.zip gcc-617e9ee588bee9f1cc349652ca0e88a98286392e.tar.gz gcc-617e9ee588bee9f1cc349652ca0e88a98286392e.tar.bz2 |
freebsd.h (TARGET_DEFAULT): Add MASK_EPILOGUE setting and remove MASK_VIS.
2002-02-09 David O'Brien <obrien@FreeBSD.org>
* config/sparc/freebsd.h(TARGET_DEFAULT): Add MASK_EPILOGUE setting and
remove MASK_VIS.
(ASM_CPU_DEFAULT_SPEC): Remove. Default setting is fine.
Approved by: Richard Henderson <rth@redhat.com>
Message-ID: <20020208111342.A4426@redhat.com>
From-SVN: r49649
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/sparc/freebsd.h | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2a6fbe9..ed290fb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2002-02-09 David O'Brien <obrien@FreeBSD.org> + + * config/sparc/freebsd.h(TARGET_DEFAULT): Add MASK_EPILOGUE setting and + remove MASK_VIS. + (ASM_CPU_DEFAULT_SPEC): Remove. Default setting is fine. + 2002-02-09 Kazu Hirata <kazu@hxi.com> * config/h8300/h8300.c (output_logical_op): Use sub.w to clear diff --git a/gcc/config/sparc/freebsd.h b/gcc/config/sparc/freebsd.h index 2366f0e..b0992fa 100644 --- a/gcc/config/sparc/freebsd.h +++ b/gcc/config/sparc/freebsd.h @@ -91,8 +91,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef TARGET_DEFAULT #define TARGET_DEFAULT \ - (MASK_V9 + MASK_64BIT + MASK_PTR64 + MASK_VIS + MASK_FASTER_STRUCTS \ - + MASK_STACK_BIAS + MASK_APP_REGS /* + MASK_EPILOGUE */ + MASK_FPU \ + (MASK_V9 + MASK_64BIT + MASK_PTR64 + MASK_FASTER_STRUCTS \ + + MASK_STACK_BIAS + MASK_APP_REGS + MASK_EPILOGUE + MASK_FPU \ + MASK_LONG_DOUBLE_128 /* + MASK_HARD_QUAD */) /* The default code model. */ @@ -102,12 +102,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /************************[ Assembler stuff ]********************************/ -/* XXX */ -#if 0 -#undef ASM_CPU_DEFAULT_SPEC -#define ASM_CPU_DEFAULT_SPEC "-Av9a" -#endif - /* XXX2 */ /* This is how to output a definition of an internal numbered label where PREFIX is the class of label and NUM is the number within the class. */ |