diff options
author | Jason Thorpe <thorpej@wasabisystems.com> | 2002-11-10 18:28:39 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@gcc.gnu.org> | 2002-11-10 18:28:39 +0000 |
commit | d898608275e56af65bf6b6ec6cba9a03a1a095df (patch) | |
tree | dbe7e06d7620769422cd60f005dc085caaadaa32 /gcc/config/mips/netbsd.h | |
parent | 2e64c6362c1f3dd6a94fe7502c626d0cf871d52c (diff) | |
download | gcc-d898608275e56af65bf6b6ec6cba9a03a1a095df.zip gcc-d898608275e56af65bf6b6ec6cba9a03a1a095df.tar.gz gcc-d898608275e56af65bf6b6ec6cba9a03a1a095df.tar.bz2 |
netbsd.h (TARGET_OS_CPP_BUILTINS): Define __ABICALLS__ if TARGET_ABICALLS.
* config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define
__ABICALLS__ if TARGET_ABICALLS.
From-SVN: r58987
Diffstat (limited to 'gcc/config/mips/netbsd.h')
-rw-r--r-- | gcc/config/mips/netbsd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/config/mips/netbsd.h b/gcc/config/mips/netbsd.h index 5537782..0d721bc 100644 --- a/gcc/config/mips/netbsd.h +++ b/gcc/config/mips/netbsd.h @@ -39,6 +39,9 @@ Boston, MA 02111-1307, USA. */ if (TARGET_LONG64) \ builtin_define ("__LONG64"); \ \ + if (TARGET_ABICALLS) \ + builtin_define ("__ABICALLS__"); \ + \ if (mips_abi == ABI_EABI) \ builtin_define ("__mips_eabi"); \ else if (mips_abi == ABI_N32) \ |