aboutsummaryrefslogtreecommitdiffstats
path: root/support/dfa.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-09-24 21:24:17 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-09-24 21:24:17 +0300
commit251e47f4a1639244b8bfedd75ce6b4a26ec5949a (patch)
tree71c9f43bf43ab684b4d14f0379bcb9fc6f74b46a /support/dfa.c
parent55eee619ac637e29c0fe847cc89cda78cc18c28d (diff)
parentc32959290957c70cd6be333ec6c0b6f1bde4cd80 (diff)
downloadegawk-251e47f4a1639244b8bfedd75ce6b4a26ec5949a.tar.gz
egawk-251e47f4a1639244b8bfedd75ce6b4a26ec5949a.tar.bz2
egawk-251e47f4a1639244b8bfedd75ce6b4a26ec5949a.zip
Merge branch 'master' into feature/iolint
Diffstat (limited to 'support/dfa.c')
-rw-r--r--support/dfa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/dfa.c b/support/dfa.c
index 641f422a..d47acfe2 100644
--- a/support/dfa.c
+++ b/support/dfa.c
@@ -3656,8 +3656,8 @@ free_mbdata (struct dfa *d)
}
/* Return true if every construct in D is supported by this DFA matcher. */
-static bool _GL_ATTRIBUTE_PURE
-dfa_supported (struct dfa const *d)
+bool
+dfasupported (struct dfa const *d)
{
for (idx_t i = 0; i < d->tindex; i++)
{
@@ -3813,7 +3813,7 @@ dfacomp (char const *s, idx_t len, struct dfa *d, bool searchflag)
dfassbuild (d);
- if (dfa_supported (d))
+ if (dfasupported (d))
{
maybe_disable_superset_dfa (d);
dfaanalyze (d, searchflag);