Skip to content

Commit

Permalink
Rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Pfeiffer committed Sep 18, 2018
1 parent 70f7db2 commit f0d04fc
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/syntaxtree.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,9 @@ static const CompilerT Compilers[] = {
COMPILER(T_REPEAT2, SyntaxTreeRepeat),
COMPILER(T_REPEAT3, SyntaxTreeRepeat),

#ifdef HPCGAP
COMPILER(T_ATOMIC, SyntaxTreeDefaultCompiler),
#endif

COMPILER_(T_BREAK),
COMPILER_(T_CONTINUE),
Expand All @@ -713,7 +715,6 @@ static const CompilerT Compilers[] = {
COMPILER_(T_ASS_LIST,
ARG_("list"), ARG_("pos"), ARG_("rhs")),
COMPILER_(T_ASS2_LIST, ARG_("list"), ARG_("pos"), ARG_("rhs")),
COMPILER_(T_ASSX_LIST, ARG_("list"), ARG_("pos"), ARG_("rhs")),
COMPILER_(T_ASSS_LIST,
ARG_("list"), ARG_("poss"), ARG_("rhss")),
COMPILER_(T_ASS_LIST_LEV,
Expand All @@ -734,12 +735,6 @@ static const CompilerT Compilers[] = {

COMPILER_(T_ASS_POSOBJ,
ARG_("posobj"), ARG_("pos"), ARG_("rhs")),
COMPILER_(T_ASSS_POSOBJ,
ARG_("posobj"), ARG_("poss"), ARG_("rhss")),
COMPILER_(T_ASS_POSOBJ_LEV,
ARG_("lists"), ARG_("pos"), ARG_("rhss"), ARG("level", SyntaxTreeIntObjInt)),
COMPILER_(T_ASSS_POSOBJ_LEV,
ARG_("lists"), ARG_("poss"), ARG_("rhss"), ARG("level", SyntaxTreeIntObjInt)),
COMPILER_(T_UNB_POSOBJ,
ARG_("posobj"), ARG_("pos")),

Expand Down Expand Up @@ -822,7 +817,6 @@ static const CompilerT Compilers[] = {
COMPILER_(T_ELM_LIST,
ARG_("list"), ARG_("pos")),
COMPILER(T_ELM2_LIST, SyntaxTreeElmList),
COMPILER(T_ELMX_LIST, SyntaxTreeElmList),
COMPILER_(T_ELMS_LIST,
ARG_("list"), ARG_("poss")),
COMPILER_(T_ELM_LIST_LEV,
Expand All @@ -841,12 +835,6 @@ static const CompilerT Compilers[] = {
ARG_("record"), ARG_("expression")),
COMPILER_(T_ELM_POSOBJ,
ARG_("posobj"), ARG_("pos")),
COMPILER_(T_ELMS_POSOBJ,
ARG_("posobj"), ARG_("pos")),
COMPILER_(T_ELM_POSOBJ_LEV,
ARG_("posobj"), ARG_("pos"), ARG_("level")),
COMPILER_(T_ELMS_POSOBJ_LEV,
ARG_("posobj"), ARG_("poss"), ARG_("level")),
COMPILER_(T_ISB_POSOBJ,
ARG_("posobj"), ARG_("pos")),
COMPILER_(T_ELM_COMOBJ_NAME,
Expand Down

0 comments on commit f0d04fc

Please sign in to comment.