diff options
Diffstat (limited to 'backendC')
-rw-r--r-- | backendC/CleanCompilerSources/Makefile.linux64 | 2 | ||||
-rw-r--r-- | backendC/CleanCompilerSources/Makefile.macosx | 2 | ||||
-rw-r--r-- | backendC/CleanCompilerSources/result_state_database.c | 3 | ||||
-rw-r--r-- | backendC/CleanCompilerSources/unix_io.c | 4 |
4 files changed, 2 insertions, 9 deletions
diff --git a/backendC/CleanCompilerSources/Makefile.linux64 b/backendC/CleanCompilerSources/Makefile.linux64 index 69ac454..72020dd 100644 --- a/backendC/CleanCompilerSources/Makefile.linux64 +++ b/backendC/CleanCompilerSources/Makefile.linux64 @@ -8,7 +8,7 @@ OBJECTS = \ backend.o backendsupport.o buildtree.o checker_2.o checksupport.o \ cocl.o codegen1.o codegen2.o codegen3.o codegen.o comparser_2.o \ compiler.o comsupport.o dbprint.o instructions.o optimisations.o \ - pattern_match_2.o result_state_database.o sa.o scanner_2.o \ + pattern_match_2.o sa.o scanner_2.o \ set_scope_numbers.o settings.o unix_io.o statesgen.o tcsupport_2.o \ typeconv_2.o version.o diff --git a/backendC/CleanCompilerSources/Makefile.macosx b/backendC/CleanCompilerSources/Makefile.macosx index 3b274f5..8ce8d7c 100644 --- a/backendC/CleanCompilerSources/Makefile.macosx +++ b/backendC/CleanCompilerSources/Makefile.macosx @@ -8,7 +8,7 @@ OBJECTS = \ backend.o backendsupport.o buildtree.o checker_2.o checksupport.o \ cocl.o codegen1.o codegen2.o codegen3.o codegen.o comparser_2.o \ compiler.o comsupport.o dbprint.o instructions.o optimisations.o \ - pattern_match_2.o result_state_database.o sa.o scanner_2.o \ + pattern_match_2.o sa.o scanner_2.o \ set_scope_numbers.o settings.o statesgen.o tcsupport_2.o \ typeconv_2.o version.o \ mac_io.o path_cache.o diff --git a/backendC/CleanCompilerSources/result_state_database.c b/backendC/CleanCompilerSources/result_state_database.c index c9e92ae..edc7baf 100644 --- a/backendC/CleanCompilerSources/result_state_database.c +++ b/backendC/CleanCompilerSources/result_state_database.c @@ -137,9 +137,6 @@ void create_result_state_database (struct imp_rule *imp_rules) TypeAlts type_alt; struct state *state_p; - if (rule->rule_root->node_symbol->symb_def->sdef_over_arity!=0) - continue; - type_alt=rule->rule_type; if (type_alt==NULL) continue; diff --git a/backendC/CleanCompilerSources/unix_io.c b/backendC/CleanCompilerSources/unix_io.c index 8ca5627..199fa84 100644 --- a/backendC/CleanCompilerSources/unix_io.c +++ b/backendC/CleanCompilerSources/unix_io.c @@ -27,12 +27,8 @@ char *GetFileExtension (FileKind kind) case obj81File: return ".obj2"; case iclFile: return ".icl"; case dclFile: return ".dcl"; - case dumpFile: return ".dmp"; - case statFile: return ".stt"; - case stasFile: return ".str"; case assFile: return ".a"; case sunAssFile: return ".s"; - case helpFile: case applFile: case otherFile: default: return ""; |