Exclude __INTEL_COMPILER in the test for __GNUC__.
This commit is contained in:
parent
0a29ecbe02
commit
4f238daf41
|
@ -143,6 +143,10 @@ show the texts for given error numbers (i.e. to call pcre2_get_error_message()
|
||||||
and display what it returns) and a few representative error codes are now
|
and display what it returns) and a few representative error codes are now
|
||||||
checked in RunTest.
|
checked in RunTest.
|
||||||
|
|
||||||
|
37. Added "&& !defined(__INTEL_COMPILER)" to the test for __GNUC__ in
|
||||||
|
pcre2_match.c, in anticipation that this is needed for the same reason it was
|
||||||
|
recently added to pcrecpp.cc in PCRE1.
|
||||||
|
|
||||||
|
|
||||||
Version 10.21 12-January-2016
|
Version 10.21 12-January-2016
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
|
@ -465,7 +465,7 @@ Returns: a match() return code
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int
|
static int
|
||||||
#ifdef __GNUC__
|
#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
|
||||||
__attribute__ ((noinline))
|
__attribute__ ((noinline))
|
||||||
#endif
|
#endif
|
||||||
op_recurse_ovecsave(REGISTER PCRE2_SPTR eptr, PCRE2_SPTR callpat,
|
op_recurse_ovecsave(REGISTER PCRE2_SPTR eptr, PCRE2_SPTR callpat,
|
||||||
|
|
Loading…
Reference in New Issue