aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources
diff options
context:
space:
mode:
authorjohnvg2004-02-20 16:50:18 +0000
committerjohnvg2004-02-20 16:50:18 +0000
commitf9817ae812ce534ba40126d395b155e1fccad5ef (patch)
tree7140d3656f65ca3075c4a1b2fa1c9153b7f99050 /backendC/CleanCompilerSources
parentremove include of typechecker.h (diff)
remove calls of PrintTCType and InitTypeChecker, change #includes
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1459 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC/CleanCompilerSources')
-rw-r--r--backendC/CleanCompilerSources/comsupport.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/backendC/CleanCompilerSources/comsupport.c b/backendC/CleanCompilerSources/comsupport.c
index bb0d320..1f1f037 100644
--- a/backendC/CleanCompilerSources/comsupport.c
+++ b/backendC/CleanCompilerSources/comsupport.c
@@ -27,13 +27,12 @@
#include "buildtree.h"
#include "comparser.h"
#include "checker.h"
-#include "typechecker.h"
+#include "tcsupport.h"
#include "statesgen.h"
#include "codegen_types.h"
#include "codegen1.h"
#include "codegen2.h"
#include "instructions.h"
-#include "overloading.h"
#include "checksupport.h"
#include "dbprint.h"
@@ -562,18 +561,6 @@ void StaticMessage (Bool error, char *symbol_format, char *message_format, ...)
PrintNodeSymbol (node, arg_nr, StdError);
break;
}
- case 'T':
- PrintTCType (va_arg (ap, struct type_cell *),NULL);
- break;
- case 'U':
- {
- struct type_cell *type,*sub_type;
-
- type=va_arg (ap, struct type_cell *);
- sub_type=va_arg (ap, struct type_cell *);
- PrintTCType (type,sub_type);
- break;
- }
default:
FPutC ('%', StdError);
FPutC (format_spec, StdError);
@@ -654,7 +641,6 @@ void InitCompiler (void)
InitScanner ();
InitParser ();
InitChecker ();
- InitTypeChecker ();
InitStatesGen ();
InitCoding ();
InitInstructions ();