From: Jie Zhang Date: Sun, 12 Nov 2006 00:27:46 +0000 (+0000) Subject: revert: bfin.h (TARGET_CPU_CPP_BUILTINS): Define __bfin__ and __BFIN__. X-Git-Tag: releases/gcc-4.3.0~8522 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a607b34fff050a8223e78f5ae1179a2e5bade795;p=thirdparty%2Fgcc.git revert: bfin.h (TARGET_CPU_CPP_BUILTINS): Define __bfin__ and __BFIN__. Revert 2006-11-11 Jie Zhang * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __bfin__ and __BFIN__. * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Use builtin_define_std instead of builtin_define for bfin and BFIN. From-SVN: r118713 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 122e0a86957c..05358b10010e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,13 @@ +2006-11-12 Jie Zhang + + Revert + 2006-11-11 Jie Zhang + * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __bfin__ + and __BFIN__. + + * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Use builtin_define_std + instead of builtin_define for bfin and BFIN. + 2006-11-11 Jie Zhang * config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __bfin__ diff --git a/gcc/config/bfin/bfin.h b/gcc/config/bfin/bfin.h index 71a598af62fc..074fd114a0bb 100644 --- a/gcc/config/bfin/bfin.h +++ b/gcc/config/bfin/bfin.h @@ -39,10 +39,8 @@ extern int target_flags; #define TARGET_CPU_CPP_BUILTINS() \ do \ { \ - builtin_define ("bfin"); \ - builtin_define ("BFIN"); \ - builtin_define ("__bfin__"); \ - builtin_define ("__BFIN__"); \ + builtin_define_std ("bfin"); \ + builtin_define_std ("BFIN"); \ builtin_define ("__ADSPBLACKFIN__"); \ if (TARGET_FDPIC) \ builtin_define ("__BFIN_FDPIC__"); \