diff options
author | johnvg | 2007-04-12 10:41:08 +0000 |
---|---|---|
committer | johnvg | 2007-04-12 10:41:08 +0000 |
commit | 206301ad3a9e875fc21b1ddfb3979e12d9204556 (patch) | |
tree | 69b3f8ce197ff7620fed8c27698d425a4cff7bfb /main | |
parent | remove SwitchGenerics macro (diff) |
remove SwitchGenerics
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1669 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main')
-rw-r--r-- | main/compile.icl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/compile.icl b/main/compile.icl index cb4d71e..c02a5a0 100644 --- a/main/compile.icl +++ b/main/compile.icl @@ -165,7 +165,7 @@ parseCommandLine [arg1=:"-strip":args] options = parseCommandLine args {options & strip_unused = True} parseCommandLine ["-generics":args] options // enable generics - = parseCommandLine args (SwitchGenerics {options & compile_with_generics = True} options) + = parseCommandLine args {options & compile_with_generics = True} parseCommandLine ["-lattr":args] options = parseCommandLine args {options & listTypes.lto_showAttributes = False} parseCommandLine ["-lt":args] options @@ -275,6 +275,7 @@ compileModule options backendArgs cache=:{dcl_modules,functions_and_macros,prede ,feo_dump_core=options.dump_core ,feo_strip_unused=options.strip_unused } moduleIdent options.searchPaths dcl_modules functions_and_macros list_inferred_types predef_symbols hash_table fmodificationtime files error io out tcl_file heaps + # unique_copy_of_predef_symbols={predef_symbol\\predef_symbol<-:predef_symbols} # (closed, files) = closeTclFile tcl_file files |