aboutsummaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/compile.icl3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/compile.icl b/main/compile.icl
index c63bafe..1125b47 100644
--- a/main/compile.icl
+++ b/main/compile.icl
@@ -183,7 +183,8 @@ parseCommandLine ["-id",compiler_id_string : args] options
= parseCommandLine args options
parseCommandLine [arg1=:"-dynamics":args] options
// generates for each .icl module a .tcl file (which contains the type information for that module)
- = parseCommandLine args {options & compile_for_dynamics = True}
+ # (args,modules,options) = parseCommandLine args {options & compile_for_dynamics = True}
+ = ([arg1:args],modules,options)
parseCommandLine [arg1=:"-fusion":args] options
// switch on fusion transformations
# (args,modules,options) = parseCommandLine args {options & compile_with_fusion = True}