diff options
author | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-12 02:29:08 +0000 |
---|---|---|
committer | ljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-12 02:29:08 +0000 |
commit | 78fb562b5130e000bd196cdca12ddfc65165a68c (patch) | |
tree | 2dc0db73545198b77c2ebbab239403fc05c54537 /gcc/config/freebsd.h | |
parent | 6d0a63b43b1c1855295f5826fbdc3aea37214ff7 (diff) | |
download | gcc-78fb562b5130e000bd196cdca12ddfc65165a68c.tar.gz |
* config/freebsd-spec.h (FBSD_CPP_PREDEFINES): Remove.
(FBSD_TARGET_OS_CPP_BUILTINS): New port-specific macro.
(FBSD_TARGET_CPU_CPP_BUILTINS): New port-specific macro.
* config/freebsd.h (CPP_PREDEFINES): Remove.
(TARGET_OS_CPP_BUILTINS): New.
* config/alpha/freebsd.h: Use overridden FBSD_TARGET_CPU_CPP_BUILTINS
instead of TARGET_OS_CPP_BUILTINS.
* config/sparc/freebsd.h (CPP_PREDEFINES): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64212 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/freebsd.h')
-rw-r--r-- | gcc/config/freebsd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/freebsd.h b/gcc/config/freebsd.h index 285f5bf85f9..f71bd8b42d5 100644 --- a/gcc/config/freebsd.h +++ b/gcc/config/freebsd.h @@ -42,7 +42,10 @@ Boston, MA 02111-1307, USA. */ #define WORD_SWITCH_TAKES_ARG(STR) (FBSD_WORD_SWITCH_TAKES_ARG(STR)) #undef CPP_PREDEFINES -#define CPP_PREDEFINES FBSD_CPP_PREDEFINES +/* Obsolete, do not define it. */ + +#undef TARGET_OS_CPP_BUILTINS +#define TARGET_OS_CPP_BUILTINS() FBSD_TARGET_OS_CPP_BUILTINS() #undef CPP_SPEC #define CPP_SPEC FBSD_CPP_SPEC |