diff options
author | John Hodge <tpg@mutabah.net> | 2016-08-14 15:03:49 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-08-14 15:03:49 +0800 |
commit | f87233c0418fcc0f084d915657c9d431c0795457 (patch) | |
tree | b66bcec3e4a8dfc70216251b058cfdd9023a0f37 /src/main.cpp | |
parent | fe2e509e2b3da555a181105d3108c685e26a8057 (diff) | |
download | mrust-f87233c0418fcc0f084d915657c9d431c0795457.tar.gz |
HIR Typecheck - Magical index impl for arrays.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 7b3fb2f4..1ca3f5e9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -31,8 +31,8 @@ bool debug_enabled() //return true;
//return g_cur_phase != "Parse";
//return g_cur_phase != "Parse" && g_cur_phase != "Expand";
- //return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";
- return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve" && g_cur_phase != "Typecheck Expressions";
+ return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";
+ //return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve" && g_cur_phase != "Typecheck Expressions";
//return false;
//return g_cur_phase == "Lower MIR";
}
|