fully disanle noinline attribute for intel compiler - issue #30

This commit is contained in:
greg
2019-09-06 23:38:35 -04:00
parent 8f0ccf7371
commit 289fadc273
+1 -1
View File
@@ -391,7 +391,7 @@
#define PHMAP_ATTRIBUTE_ALWAYS_INLINE
#endif
#if PHMAP_HAVE_ATTRIBUTE(noinline) || (defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER))
#if !defined(__INTEL_COMPILER) && (PHMAP_HAVE_ATTRIBUTE(noinline) || (defined(__GNUC__) && !defined(__clang__)))
#define PHMAP_ATTRIBUTE_NOINLINE __attribute__((noinline))
#define PHMAP_HAVE_ATTRIBUTE_NOINLINE 1
#else