diff options
author | Doug Evans <dje@gnu.org> | 1996-02-20 00:12:28 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-02-20 00:12:28 +0000 |
commit | 1b11c012788b93e3034c678d8a753297050957c5 (patch) | |
tree | 87ccdbe34480f0dc5fe26a38557492b9f19cfc0b | |
parent | 7ae6090b1117ebaa74b0e57dda25476a101e9a45 (diff) | |
download | gcc-1b11c012788b93e3034c678d8a753297050957c5.zip gcc-1b11c012788b93e3034c678d8a753297050957c5.tar.gz gcc-1b11c012788b93e3034c678d8a753297050957c5.tar.bz2 |
sp64-elf.h (TARGET_DEFAULT): Add MASK_APP_REGS.
* sparc/sp64-elf.h (TARGET_DEFAULT): Add MASK_APP_REGS.
(CPP_PREDEFINES): Define __arch64__.
From-SVN: r11317
-rw-r--r-- | gcc/config/sparc/sp64-elf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/sparc/sp64-elf.h b/gcc/config/sparc/sp64-elf.h index 6869d29..d7af869 100644 --- a/gcc/config/sparc/sp64-elf.h +++ b/gcc/config/sparc/sp64-elf.h @@ -1,5 +1,4 @@ -/* Definitions of target machine for GNU compiler, - for Sun SPARC-V9 on a hypothetical elf format machine. +/* Definitions of target machine for GNU compiler, for SPARC64, ELF. Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Contributed by Doug Evans, dje@cygnus.com. @@ -42,12 +41,13 @@ Boston, MA 02111-1307, USA. */ #undef TARGET_DEFAULT #define TARGET_DEFAULT \ (MASK_V9 + MASK_ARCH64 + MASK_PTR64 + MASK_HARD_QUAD \ - + MASK_STACK_BIAS + MASK_MEDANY + MASK_EPILOGUE + MASK_FPU) + + MASK_STACK_BIAS + MASK_MEDANY + MASK_APP_REGS + MASK_EPILOGUE + MASK_FPU) /* __svr4__ is used by the C library */ +/* ??? __arch64__ is subject to change. */ #undef CPP_PREDEFINES #define CPP_PREDEFINES "\ --D__sparc__ -D__sparc_v9__ -D__svr4__ \ +-D__sparc__ -D__sparc_v9__ -D__arch64__ -D__svr4__ \ -Acpu(sparc64) -Amachine(sparc64) \ " |