From: Rainer Orth Date: Tue, 25 Jun 2002 23:31:06 +0000 (+0000) Subject: alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading underscore from __IEEE_FP and __IEE... X-Git-Tag: releases/gcc-3.3.0~4102 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9ee10ab66e0dee87b1efd1976573b64e79c890a;p=thirdparty%2Fgcc.git alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading underscore from __IEEE_FP and __IEEE_FP_INEXACT. * config/alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading underscore from __IEEE_FP and __IEEE_FP_INEXACT. From-SVN: r54998 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 255c3a63dc26..cee478f4bb4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-25 Rainer Orth + + * config/alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Remove leading + underscore from __IEEE_FP and __IEEE_FP_INEXACT. + 2002-06-25 Aldy Hernandez * doc/extend.texi (PowerPC AltiVec Built-in Functions): Document diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 8d47493c2e49..7beee86d648c 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -64,9 +64,9 @@ Boston, MA 02111-1307, USA. */ builtin_assert ("cpu=ev4"); \ } \ if (TARGET_IEEE || TARGET_IEEE_WITH_INEXACT) \ - builtin_define ("__IEEE_FP"); \ + builtin_define ("_IEEE_FP"); \ if (TARGET_IEEE_WITH_INEXACT) \ - builtin_define ("__IEEE_FP_INEXACT"); \ + builtin_define ("_IEEE_FP_INEXACT"); \ \ /* Macros dependent on the C dialect. */ \ if (preprocessing_asm_p ()) \