aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main/compile.icl3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/compile.icl b/main/compile.icl
index c3b048a..2957a9b 100644
--- a/main/compile.icl
+++ b/main/compile.icl
@@ -158,7 +158,8 @@ parseCommandLine [arg1=:"-dynamics":args] options
= parseCommandLine args {options & compile_for_dynamics = True}
parseCommandLine [arg1=:"-fusion":args] options
// switch on fusion transformations
- = parseCommandLine args {options & compile_with_fusion = True}
+ # (args,modules,options) = parseCommandLine args {options & compile_with_fusion = True}
+ = ([arg1:args],modules,options)
parseCommandLine [arg1=:"-dump":args] options
= parseCommandLine args {options & dump_core = True}
parseCommandLine [arg1=:"-strip":args] options