(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:
Ulrich Drepper 2004-11-08 16:06:36 +00:00
parent 18c45bb426
commit a705c0d860

View File

@ -545,7 +545,6 @@ struct re_backref_cache_entry
int str_idx;
int subexp_from;
int subexp_to;
int flag;
};
typedef struct
@ -577,17 +576,11 @@ typedef struct
typedef struct
{
int cur_bkref;
int cls_subexp_idx;
re_dfastate_t **sifted_states;
re_dfastate_t **limited_states;
re_node_set limits;
int last_node;
int last_str_idx;
int check_subexp;
re_node_set limits;
} re_sift_context_t;
struct re_fail_stack_ent_t