diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ad25e75..2319cf3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-02-19 David Daney <ddaney@avtrex.com> + + PR preprocessor/14198 + * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Add + builtin_assert ("machine=mips") + 2004-02-19 Kazu Hirata <kazu@cs.umass.edu> * opts.c (decode_options): Don't use DEFAULT_SHORT_ENUMS. diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index 984f4f4..66f22e5 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -58,6 +58,7 @@ Boston, MA 02111-1307, USA. */ LINUX_TARGET_OS_CPP_BUILTINS(); \ builtin_define ("__PIC__"); \ builtin_define ("__pic__"); \ + builtin_assert ("machine=mips"); \ /* The GNU C++ standard library requires this. */ \ if (c_dialect_cxx ()) \ builtin_define ("_GNU_SOURCE"); \ |