Commit 76a15894 by Gerald Pfeifer Committed by Gerald Pfeifer

builtins-config.h (HAVE_C99_RUNTIME): Do not define for FreeBSD up to and including version 8.

	* gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Do not define
	for FreeBSD up to and including version 8.

From-SVN: r149661
parent 18e67adf
2009-07-15 Gerald Pfeifer <gerald@pfeifer.com>
* gcc.dg/builtins-config.h (HAVE_C99_RUNTIME): Do not define
for FreeBSD up to and including version 8.
2009-07-14 Taras Glek <tglek@mozilla.com>
Rafael Espindola <espindola@google.com>
......
/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation.
/* Copyright (C) 2003, 2004, 2005, 2006, 2009 Free Software Foundation.
Define macros useful in tests for bulitin functions. */
......@@ -15,8 +15,8 @@
/* Irix6 doesn't have the entire C99 runtime. */
#elif defined(__AVR__)
/* AVR doesn't have the entire C99 runtime. */
#elif defined(__FreeBSD__) && (__FreeBSD__ < 5)
/* FreeBSD before version 5 doesn't have the entire C99 runtime. */
#elif defined(__FreeBSD__) && (__FreeBSD__ < 9)
/* FreeBSD up to version 8 lacks support for cexp and friends. */
#elif defined(__netware__)
/* NetWare doesn't have the entire C99 runtime. */
#elif defined(__vxworks)
......
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