summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-11-07 16:04:26 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-11-07 16:04:26 +0000
commit9af0acdbd72c7cf7dd9e593b8f5d51dcf0bfa4f7 (patch)
tree1cfd674246b43b9ed0f449335c8924396b5f1e98 /regcomp.h
parent023851150e19d9fc4a9b3320c50e7fc5ccec014f (diff)
downloadperl-9af0acdbd72c7cf7dd9e593b8f5d51dcf0bfa4f7.tar.gz
Too profiler-happy: with optimization the #7590 actually makes
the test to run 0.5% _slower_. Requires much more instrumentation. Retract #7590. p4raw-id: //depot/perl@7591
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/regcomp.h b/regcomp.h
index b906b52baf..225ff74a26 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -249,7 +249,6 @@ struct regnode_charclass_class {
#define ANYOF_CLASS_ZERO(ret) Zero(((struct regnode_charclass_class*)(ret))->classflags, ANYOF_CLASSBITMAP_SIZE, char)
#define ANYOF_BITMAP_ZERO(ret) Zero(((struct regnode_charclass*)(ret))->bitmap, ANYOF_BITMAP_SIZE, char)
-#define ANYOF_BITMAP_SETALL(p) (memset(ANYOF_BITMAP(p), 0xff, ANYOF_BITMAP_SIZE))
#define ANYOF_BITMAP(p) (((struct regnode_charclass*)(p))->bitmap)
#define ANYOF_BITMAP_BYTE(p, c) (ANYOF_BITMAP(p)[((c) >> 3) & 31])