summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-05-29 16:23:29 +0800
committerJohn Hodge <tpg@mutabah.net>2016-05-29 16:23:29 +0800
commitd97f3089b257754741326bda377103d2c99f263e (patch)
tree4c23946577af4786f427c8da365bbd019885454d /src/main.cpp
parentf6b5e16db50450be409330e6dddfb218c8b5afb7 (diff)
downloadmrust-d97f3089b257754741326bda377103d2c99f263e.tar.gz
HIR Typecheck - Start on expression type checking/inferrence
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ffe61468..09d16dfe 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -173,7 +173,7 @@ int main(int argc, char *argv[])
});
// Check the rest of the expressions (including function bodies)
CompilePhaseV("Typecheck Expressions", [&]() {
- //Typecheck_Expressions(*hir_crate);
+ Typecheck_Expressions(*hir_crate);
});
if( params.last_stage == ProgramParams::STAGE_TYPECK ) {