diff options
author | David Robillard <d@drobilla.net> | 2012-12-14 05:29:49 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-12-14 05:29:49 +0000 |
commit | 32c1b78fc9bdadd1dd40ed390941b2a6fea39435 (patch) | |
tree | c02e3da8138d29ee060bd5bf584812bd9ad4ca5f /src/resp.cpp | |
parent | 60cb2bb1a12a1393abdc0d82b40ea0feabe3a74d (diff) | |
download | resp-32c1b78fc9bdadd1dd40ed390941b2a6fea39435.tar.gz resp-32c1b78fc9bdadd1dd40ed390941b2a6fea39435.tar.bz2 resp-32c1b78fc9bdadd1dd40ed390941b2a6fea39435.zip |
Real implementation of algebraic data types, and parametric types.
git-svn-id: http://svn.drobilla.net/resp/trunk@434 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.cpp')
-rw-r--r-- | src/resp.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resp.cpp b/src/resp.cpp index b0d1f72..51e5ea6 100644 --- a/src/resp.cpp +++ b/src/resp.cpp @@ -80,6 +80,7 @@ print_usage(char* name, bool error) os << " -R Reduce to simpler forms only" << endl; os << " -C Convert to CPS only" << endl; os << " -L Lambda lift only" << endl; + os << " -D Depoly only" << endl; os << " -F Flatten only" << endl; os << " -S Compile to assembly only (do not execute)" << endl; @@ -101,6 +102,7 @@ main(int argc, char** argv) } else if (!strncmp(argv[i], "-C", 3) || !strncmp(argv[i], "-F", 3) || !strncmp(argv[i], "-L", 3) + || !strncmp(argv[i], "-D", 3) || !strncmp(argv[i], "-P", 3) || !strncmp(argv[i], "-R", 3) || !strncmp(argv[i], "-S", 3) |