diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-24 15:12:25 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-24 15:12:25 +0800 |
commit | dd32dcc71299a489f18dc9d1247104cb81b6b5dd (patch) | |
tree | cd050481454e65f1929cb28c658bc8c2c678b00a /src/main.cpp | |
parent | ba6f4df093bc8bfc330b2205279f3f0fca225e77 (diff) | |
download | mrust-dd32dcc71299a489f18dc9d1247104cb81b6b5dd.tar.gz |
HIR Expand Type - Convert to use a generic HIR visitor
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index a02fbac6..b519f1fb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,7 +25,8 @@ int g_debug_indent_level = 0; bool debug_enabled()
{
//return g_cur_phase != "Parse";
- return g_cur_phase != "Parse" && g_cur_phase != "Expand";
+ //return g_cur_phase != "Parse" && g_cur_phase != "Expand";
+ return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";;
}
::std::ostream& debug_output(int indent, const char* function)
{
|