diff options
author | Zack Weinberg <zack@codesourcery.com> | 2002-05-15 05:30:01 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2002-05-15 05:30:01 +0000 |
commit | a11eba953e31ffadb5bf0f943320c200577c955e (patch) | |
tree | 576aea20e1d126c2bd484da7831e462f3b570f4c /gcc/config/mips/linux.h | |
parent | 1c31ecf66502d28461ea45a8242a5c6e10beb7f2 (diff) | |
download | gcc-a11eba953e31ffadb5bf0f943320c200577c955e.zip gcc-a11eba953e31ffadb5bf0f943320c200577c955e.tar.gz gcc-a11eba953e31ffadb5bf0f943320c200577c955e.tar.bz2 |
c-parse.in (MODIFIED_WCHAR_TYPE): New macro.
* c-parse.in (MODIFIED_WCHAR_TYPE): New macro.
(c_common_nodes_and_builtins): Use it.
(builtin_define_with_value): New function.
(cb_register_builtins): Define __SIZE_TYPE__,
__PTRDIFF_TYPE__, __WCHAR_TYPE__, and __WINT_TYPE__ here,
using builtin_define_with_value. Use consistent notation when
defining __GXX_WEAK__.
(WCHAR_TYPE_SIZE): Don't redefine.
(combine_strings): Don't use WCHAR_TYPE_SIZE.
* cppdefault.h: Don't provide defaults for SIZE_TYPE,
PTRDIFF_TYPE, WCHAR_TYPE, or WINT_TYPE.
* cppinit.c (builtin_array): Remove entries for __SIZE_TYPE__ etc.
* tradcpp.c (initialize_builtins): Likewise.
* gcc.c (cpp_unique_options): Don't muck with __WCHAR_TYPE__.
* c-lex.h (builtin_define_with_value): Prototype.
* system.h: Poison NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_WCHAR_TYPE,
NO_BUILTIN_PTRDIFF_TYPE, and NO_BUILTIN_WINT_TYPE.
* doc/tm.texi: Remove mention of NO_BUILTIN_SIZE_TYPE etc.
* config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
config/ia64/ia64.h, config/mips/dec-osf1.h, config/mips/iris6.h,
config/mips/linux.h, config/mips/mips.h, config/mips/netbsd.h,
config/mips/osfrose.h, config/mips/sni-svr4.h, config/rs6000/aix51.h,
config/s390/linux.h, config/sh/sh.h, config/sh/sh64.h,
config/sparc/linux64.h, config/sparc/netbsd-elf.h,
config/sparc/sol2-bi.h, config/sparc/sparc.h:
Do not define NO_BUILTIN_SIZE_TYPE etc. Remove all references
to __SIZE_TYPE__ etc from all spec strings. When this makes
extra specs empty, delete them.
From-SVN: r53472
Diffstat (limited to 'gcc/config/mips/linux.h')
-rw-r--r-- | gcc/config/mips/linux.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index f1ff69e0..7e2b9ea 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -142,13 +142,6 @@ void FN () \ -Amachine=mips -D__ELF__ -D__PIC__ -D__pic__" #endif -#undef SUBTARGET_CPP_SIZE_SPEC -#define SUBTARGET_CPP_SIZE_SPEC "\ -%{mabi=32: -D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int} \ -%{mabi=n32: -D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int} \ -%{mabi=64: -D__SIZE_TYPE__=long\\ unsigned\\ int -D__PTRDIFF_TYPE__=long\\ int} \ -%{!mabi*: -D__SIZE_TYPE__=unsigned\\ int -D__PTRDIFF_TYPE__=int}" - /* We must make -mips3 do what -mlong64 used to do. */ /* ??? If no mipsX option given, but a mabi=X option is, then should set _MIPS_ISA based on the mabi=X option. */ @@ -156,7 +149,6 @@ void FN () \ _MIPS_SIM based on the mipsX option. */ /* ??? Same for _MIPS_SZINT. */ /* ??? Same for _MIPS_SZPTR. */ -/* ??? Same for __SIZE_TYPE and __PTRDIFF_TYPE. */ #undef SUBTARGET_CPP_SPEC #define SUBTARGET_CPP_SPEC "\ %{mfp32: -D_MIPS_FPSET=16} \ |