Don't use the builtin vaalist for icc.

Submitted by:	Igor Sysoev <is@rambler-co.ru>
MFC after:	3 days
This commit is contained in:
Alexander Leidinger 2005-10-05 17:21:09 +00:00
parent bb5e059e0d
commit b64944a543

View File

@ -74,19 +74,16 @@
# undef __GNUCLIKE_BUILTIN_CONSTANT_P
# endif
#if __GNUC_MINOR__ > 95 || __GNUC__ >= 3 || defined(__INTEL_COMPILER)
#if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3) && !defined(__INTEL_COMPILER)
# define __GNUCLIKE_BUILTIN_VARARGS 1
# define __GNUCLIKE_BUILTIN_STDARG 1
# define __GNUCLIKE_BUILTIN_VAALIST 1
#endif
#define __GNUCLIKE_BUILTIN_VAALIST 1
#if defined(__GNUC__)
# define __GNUC_VA_LIST_COMPATIBILITY 1
#endif
#if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3) && !defined(__INTEL_COMPILER)
# define __GNUCLIKE_BUILTIN_STDARG 1
#endif
#ifndef __INTEL_COMPILER
# define __GNUCLIKE_BUILTIN_NEXT_ARG 1
# define __GNUCLIKE_MATH_BUILTIN_RELOPS