summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-08-27 20:21:12 +0800
committerJohn Hodge <tpg@mutabah.net>2016-08-27 20:21:12 +0800
commit4d3b00c1e652b0c62be20cd4a6fbf6a015298a2b (patch)
treed6a280d7c17991c37ac69f599f99242aaef2bfe3 /src/main.cpp
parente91522341ea4c6922d25aaca3bce3138da95648d (diff)
downloadmrust-4d3b00c1e652b0c62be20cd4a6fbf6a015298a2b.tar.gz
HIR (De)serialise - Working deserialise
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 71da37c8..e6e94132 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -32,7 +32,7 @@ int g_debug_indent_level = 0;
void init_debug_list()
{
g_debug_disable_map.insert( "Parse" );
- g_debug_disable_map.insert( "Expand" );
+ //g_debug_disable_map.insert( "Expand" );
g_debug_disable_map.insert( "Resolve" );
@@ -57,7 +57,7 @@ void init_debug_list()
g_debug_disable_map.insert( "MIR Validate" );
g_debug_disable_map.insert( "Dump MIR" );
- g_debug_disable_map.insert( "HIR Serialise" );
+ //g_debug_disable_map.insert( "HIR Serialise" );
}
bool debug_enabled()
{