From 17991269d612fa8b1eb8ec6c43d072d813457a56 Mon Sep 17 00:00:00 2001 From: Adrian Thurston Date: Thu, 13 Dec 2018 13:38:54 +0200 Subject: disabled the experimental postfix reduce Considered using this as a means of transmitting parsed frontend to common reducer in Ragel ... way too error prone though. May revive later on, however the C++ wrapper for FILE is not standard. refs #251 --- src/reduce.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/reduce.cc') diff --git a/src/reduce.cc b/src/reduce.cc index a2db97f0..6e010779 100644 --- a/src/reduce.cc +++ b/src/reduce.cc @@ -880,7 +880,8 @@ void Compiler::writeCommit() "#include \n" "\n" "#include \n" - "#include \n" + /* Not available on MAC OS. */ + // "#include \n" "#include \n" "\n" "using std::endl;\n" @@ -894,7 +895,7 @@ void Compiler::writeCommit() writeReduceDispatchers(); - writePostfixReduce(); + //writePostfixReduce(); writeParseReduce(); -- cgit v1.2.1