summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-11-08 16:06:36 +0000
committerUlrich Drepper <drepper@redhat.com>2004-11-08 16:06:36 +0000
commita705c0d860514806e62bef12f623c7654c9f3d29 (patch)
tree2ba170cad311ecca7ddd0411be61373dfa6619a3
parent18c45bb426c0948ebb0316e61a8efa33d10a7dcb (diff)
(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.
-rw-r--r--posix/regex_internal.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/posix/regex_internal.h b/posix/regex_internal.h
index 1fe537b940..e807173372 100644
--- a/posix/regex_internal.h
+++ b/posix/regex_internal.h
@@ -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