diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-22 13:58:04 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-22 13:58:04 +0800 |
commit | 8f500fadbe6ced4d08e43057a9dd6ce8e76c1f71 (patch) | |
tree | 2f41c0f30ba47f411f025515e8debab9be732354 /src/main.cpp | |
parent | 19d602e654b8e9cf4935fff35a4aa02e09b682b9 (diff) | |
download | mrust-8f500fadbe6ced4d08e43057a9dd6ce8e76c1f71.tar.gz |
Travis - Attempt to expand rustc tests
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2ffab7e8..b8ba315d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -535,6 +535,8 @@ ProgramParams::ProgramParams(int argc, char *argv[]) arg = argv[++i];
if( strcmp(arg, "parse") == 0 )
this->last_stage = STAGE_PARSE;
+ else if( strcmp(arg, "expand") == 0 )
+ this->last_stage = STAGE_EXPAND;
else if( strcmp(arg, "resolve") == 0 )
this->last_stage = STAGE_RESOLVE;
else if( strcmp(arg, "mir") == 0 )
|