- Implemented --check=Secret switch, which allows checking of specific

properties.
- Fixed a bug in the symbol table, where symbols were never inserted
  into the hash table.
This commit is contained in:
ccremers
2004-08-09 09:42:58 +00:00
parent 4d154e8126
commit 4d1362cb1b
10 changed files with 125 additions and 30 deletions

View File

@@ -1,7 +1,11 @@
#ifndef COMPILER
#define COMPILER
void compile (const System sys, Tac tc, int maxruns);
void compilerInit (const System sys);
void compilerDone (void);
void compile (Tac tc, int maxruns);
void preprocess (const System sys);
Term findGlobalConstant (const char *s);
#endif