mirror of git://sourceware.org/git/glibc.git
(struct re_backref_cache_entry): Remove flag field. (struct re_sift_context_t): Remove cur_bkref, cls_subexp_idx, check_subexp fields. Move limits last.
This commit is contained in:
parent
18c45bb426
commit
a705c0d860
|
|
@ -545,7 +545,6 @@ struct re_backref_cache_entry
|
||||||
int str_idx;
|
int str_idx;
|
||||||
int subexp_from;
|
int subexp_from;
|
||||||
int subexp_to;
|
int subexp_to;
|
||||||
int flag;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
@ -577,17 +576,11 @@ typedef struct
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int cur_bkref;
|
|
||||||
int cls_subexp_idx;
|
|
||||||
|
|
||||||
re_dfastate_t **sifted_states;
|
re_dfastate_t **sifted_states;
|
||||||
re_dfastate_t **limited_states;
|
re_dfastate_t **limited_states;
|
||||||
|
|
||||||
re_node_set limits;
|
|
||||||
|
|
||||||
int last_node;
|
int last_node;
|
||||||
int last_str_idx;
|
int last_str_idx;
|
||||||
int check_subexp;
|
re_node_set limits;
|
||||||
} re_sift_context_t;
|
} re_sift_context_t;
|
||||||
|
|
||||||
struct re_fail_stack_ent_t
|
struct re_fail_stack_ent_t
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue