summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAkim Demaille <demaille@gostai.com>2008-11-25 20:57:58 +0100
committerAkim Demaille <demaille@gostai.com>2008-11-26 09:48:24 +0100
commit932b0c960a8187ed1309d21ffd68b0cf83802791 (patch)
treebe0e4045ce79a973250c50b65ed8b0ce45fe5260 /etc
parent8452c667e6ec9f6b990d3b61c4d3195ee62e9d69 (diff)
downloadbison-932b0c960a8187ed1309d21ffd68b0cf83802791.tar.gz
Get rid of lalr1-split.cc.
It was no longer maintainer. * data/lalr1-split.cc: Remove. * etc/bench.pl.in (bench_fusion_parser): Remove. Adjust.
Diffstat (limited to 'etc')
-rwxr-xr-xetc/bench.pl.in25
1 files changed, 0 insertions, 25 deletions
diff --git a/etc/bench.pl.in b/etc/bench.pl.in
index a95e646b..cf4815ef 100755
--- a/etc/bench.pl.in
+++ b/etc/bench.pl.in
@@ -57,11 +57,6 @@ request.
=over 4
-=item I<fusion>
-
-Test F<lalr1.cc> with three stacks against F<lalr1-fusion.cc> which
-uses a single one.
-
=item I<push>
Test the push parser vs. the pull interface. Use the C parser.
@@ -922,25 +917,6 @@ sub bench_variant_parser ()
);
}
-######################################################################
-
-=item C<bench_fusion_parser ()>
-
-Bench the C++ lalr1.cc parser using Boost.Variants or %union.
-
-=cut
-
-sub bench_fusion_parser ()
-{
- bench ('list',
- qw(
- %s lalr1-split.cc
- |
- %s lalr1.cc
- )
- );
-}
-
############################################################################
sub help ($)
@@ -1126,7 +1102,6 @@ verbose 2, "Grammar: $grammar\n";
# Support -b: predefined benches.
my %bench =
(
- "fusion" => \&bench_fusion_parser,
"push" => \&bench_push_parser,
"variant" => \&bench_variant_parser,
);