summaryrefslogtreecommitdiff
path: root/src/pcre2_match.c
diff options
context:
space:
mode:
authorMatthew Vernon <matthew@debian.org>2016-08-02 18:07:01 +0100
committerMatthew Vernon <matthew@debian.org>2016-08-02 18:07:01 +0100
commit92b17f0eb8fddd7117c5344a1e1177daec21995a (patch)
treecdbc5ef98fe1a0e39283b47348c8be787ff37378 /src/pcre2_match.c
parent5fc77543f854bbe609407e8f2d54d906faad2883 (diff)
Import upstream 10.22 release
Diffstat (limited to 'src/pcre2_match.c')
-rw-r--r--src/pcre2_match.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pcre2_match.c b/src/pcre2_match.c
index f5275c7..0763a23 100644
--- a/src/pcre2_match.c
+++ b/src/pcre2_match.c
@@ -55,7 +55,7 @@ POSSIBILITY OF SUCH DAMAGE.
#define PUBLIC_MATCH_OPTIONS \
(PCRE2_ANCHORED|PCRE2_NOTBOL|PCRE2_NOTEOL|PCRE2_NOTEMPTY| \
PCRE2_NOTEMPTY_ATSTART|PCRE2_NO_UTF_CHECK|PCRE2_PARTIAL_HARD| \
- PCRE2_PARTIAL_SOFT)
+ PCRE2_PARTIAL_SOFT|PCRE2_NO_JIT)
#define PUBLIC_JIT_MATCH_OPTIONS \
(PCRE2_NO_UTF_CHECK|PCRE2_NOTBOL|PCRE2_NOTEOL|PCRE2_NOTEMPTY|\
@@ -465,7 +465,7 @@ Returns: a match() return code
*/
static int
-#ifdef __GNUC__
+#if defined(__GNUC__) && !defined(__INTEL_COMPILER)
__attribute__ ((noinline))
#endif
op_recurse_ovecsave(REGISTER PCRE2_SPTR eptr, PCRE2_SPTR callpat,