Commit 589dd995 by Janis Johnson Committed by Janis Johnson

c-cppbuiltin.c (c_cpp_builtins): Remove definition of __STDC_WANT_DEC_FP__.

	* c-cppbuiltin.c (c_cpp_builtins): Remove definition of
	__STDC_WANT_DEC_FP__.

From-SVN: r123973
parent f7cc5390
2007-04-19 Janis Johnson <janis187@us.ibm.com>
* c-cppbuiltin.c (c_cpp_builtins): Remove definition of
__STDC_WANT_DEC_FP__.
2007-04-19 Joseph Myers <joseph@codesourcery.com> 2007-04-19 Joseph Myers <joseph@codesourcery.com>
* configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu* * configure.ac: Allow both powerpc*-*-linux* and powerpc*-*-gnu*
......
...@@ -606,16 +606,11 @@ c_cpp_builtins (cpp_reader *pfile) ...@@ -606,16 +606,11 @@ c_cpp_builtins (cpp_reader *pfile)
if (TARGET_DECLSPEC) if (TARGET_DECLSPEC)
builtin_define ("__declspec(x)=__attribute__((x))"); builtin_define ("__declspec(x)=__attribute__((x))");
/* Tell the user whether decimal floating point is supported, /* If decimal floating point is supported, tell the user if the
and if it is supported, whether the alternate format (BID) alternate format (BID) is used instead of the standard (DPD)
is used over the standard (DPD) format. */ format. */
if (ENABLE_DECIMAL_FLOAT && ENABLE_DECIMAL_BID_FORMAT)
if (ENABLE_DECIMAL_FLOAT) cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
{
cpp_define (pfile, "__STDC_WANT_DEC_FP__");
if (ENABLE_DECIMAL_BID_FORMAT)
cpp_define (pfile, "__DECIMAL_BID_FORMAT__");
}
} }
/* Pass an object-like macro. If it doesn't lie in the user's /* Pass an object-like macro. If it doesn't lie in the user's
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment