svn commit: r284858 - head/sys/sys

Tijl Coosemans tijl at FreeBSD.org
Thu Jun 25 19:39:07 UTC 2015


Author: tijl
Date: Thu Jun 25 19:39:07 2015
New Revision: 284858
URL: https://svnweb.freebsd.org/changeset/base/284858

Log:
  Enable the use of __builtin_va_* for ICC.
  
  PR:		198822
  Submitted by:	Sergey Melnikov <sergey.melnikov at intel.com>
  MFC after:	5 days

Modified:
  head/sys/sys/cdefs.h

Modified: head/sys/sys/cdefs.h
==============================================================================
--- head/sys/sys/cdefs.h	Thu Jun 25 18:45:37 2015	(r284857)
+++ head/sys/sys/cdefs.h	Thu Jun 25 19:39:07 2015	(r284858)
@@ -92,7 +92,7 @@
 #undef __GNUCLIKE_BUILTIN_CONSTANT_P
 #endif
 
-#if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3) && !defined(__INTEL_COMPILER)
+#if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3)
 #define	__GNUCLIKE_BUILTIN_VARARGS 1
 #define	__GNUCLIKE_BUILTIN_STDARG 1
 #define	__GNUCLIKE_BUILTIN_VAALIST 1


More information about the svn-src-head mailing list