diff options
author | clean | 2000-07-12 14:59:46 +0000 |
---|---|---|
committer | clean | 2000-07-12 14:59:46 +0000 |
commit | 90461e5831717920426c9c1d7c861a3724f89715 (patch) | |
tree | 59d48b852f0adce522157ff7c27e24b759561b0d /backendC/CleanCompilerSources/cginterface.t | |
parent | changes to avoid bug in module refmark when compiling compiler with itself (diff) |
clean 1.3.3 backend again again
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@189 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC/CleanCompilerSources/cginterface.t')
-rw-r--r-- | backendC/CleanCompilerSources/cginterface.t | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/cginterface.t b/backendC/CleanCompilerSources/cginterface.t new file mode 100644 index 0000000..1f5bd48 --- /dev/null +++ b/backendC/CleanCompilerSources/cginterface.t @@ -0,0 +1,16 @@ + +typedef enum { MAC_II, SUN_3, MAC_I, MAC_IISANE, MAC_CURRENT = 100 } target_machine_type; + +/* code generator flags */ +#define ASSEMBLY 1 +#define KEEP_ABC 2 +#define STACK_CHECKS 4 +#define DO_PARALLEL 8 +#define CHECK_INDICES 16 + +/* application and linker flags */ +#define SHOW_BASIC_ONLY 1 +#define SHOW_GARBAGE_COLLECTIONS 2 +#define SHOW_STACK_SIZE 4 +#define SHOW_EXECUTION_TIME 8 + |