| 5940 |
compiler_common common_data; |
compiler_common common_data; |
| 5941 |
compiler_common *common = &common_data; |
compiler_common *common = &common_data; |
| 5942 |
const unsigned char *tables = re->tables; |
const unsigned char *tables = re->tables; |
| 5943 |
pcre_study_data *study = (extra->flags & PCRE_EXTRA_STUDY_DATA) != 0 ? extra->study_data : NULL; |
pcre_study_data *study; |
| 5944 |
uschar *ccend; |
uschar *ccend; |
| 5945 |
executable_function *function; |
executable_function *function; |
| 5946 |
void *executable_func; |
void *executable_func; |
| 5952 |
struct sljit_jump *reqbyte_notfound = NULL; |
struct sljit_jump *reqbyte_notfound = NULL; |
| 5953 |
struct sljit_jump *empty_match; |
struct sljit_jump *empty_match; |
| 5954 |
|
|
| 5955 |
|
SLJIT_ASSERT((extra->flags & PCRE_EXTRA_STUDY_DATA) != 0); |
| 5956 |
|
study = extra->study_data; |
| 5957 |
|
|
| 5958 |
if (!tables) |
if (!tables) |
| 5959 |
tables = _pcre_default_tables; |
tables = _pcre_default_tables; |
| 5960 |
|
|