aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/cljcc.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/cljcc/cljcc.clj')
-rw-r--r--src/cljcc/cljcc.clj3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cljcc/cljcc.clj b/src/cljcc/cljcc.clj
index 2c9643e..f63ebed 100644
--- a/src/cljcc/cljcc.clj
+++ b/src/cljcc/cljcc.clj
@@ -19,8 +19,9 @@
(def cli-options
[[nil "--lex" "Runs lexer. Does not emit any files."]
[nil "--parse" "Runs parser. Does not emit any files."]
- [nil "--codegen" "Runs compiler. Does not emit any files."]
+ [nil "--validate" "Runs semantic analyzer. Does not emit any files."]
[nil "--tacky" "Runs tacky generation. Does not emit any files."]
+ [nil "--codegen" "Runs compiler. Does not emit any files."]
["-h" "--help"]])
(defn validate-args [args]