summaryrefslogtreecommitdiff
path: root/pcre_fullinfo.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-28 16:10:09 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-12-28 16:10:09 +0000
commita29cc4dc66d82b59de7616c53517c58271e6e0e8 (patch)
treec74caa3f756e12f475c840392d507a89bcfe8bc8 /pcre_fullinfo.c
parent77b62a421481e0547788d4c0dc7539ac7f41d85b (diff)
downloadpcre-a29cc4dc66d82b59de7616c53517c58271e6e0e8.tar.gz
Rolled back trunk to r755 to prepare for merging the 16-bit branch.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@835 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_fullinfo.c')
-rw-r--r--pcre_fullinfo.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/pcre_fullinfo.c b/pcre_fullinfo.c
index 2aca564..57971a8 100644
--- a/pcre_fullinfo.c
+++ b/pcre_fullinfo.c
@@ -100,19 +100,6 @@ switch (what)
*((size_t *)where) = (study == NULL)? 0 : study->size;
break;
- case PCRE_INFO_JITSIZE:
-#ifdef SUPPORT_JIT
- *((size_t *)where) =
- (extra_data != NULL &&
- (extra_data->flags & PCRE_EXTRA_EXECUTABLE_JIT) != 0 &&
- extra_data->executable_jit != NULL)?
- _pcre_jit_get_size(extra_data->executable_jit) : 0;
-#else
- *((size_t *)where) = 0;
-#endif
-
- break;
-
case PCRE_INFO_CAPTURECOUNT:
*((int *)where) = re->top_bracket;
break;