diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-29 18:11:02 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-29 18:11:02 +0800 |
commit | f89032cc3bb82ae691cc353ac33345bbf8a8559a (patch) | |
tree | a90294c2439029f0575c52d7a9479600fb0e7fc6 /src/main.cpp | |
parent | d97f3089b257754741326bda377103d2c99f263e (diff) | |
download | mrust-f89032cc3bb82ae691cc353ac33345bbf8a8559a.tar.gz |
HIR - Add binding pointers to TypeRef and Pattern
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 09d16dfe..f5dd63a3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -157,6 +157,7 @@ int main(int argc, char *argv[]) });
CompilePhaseV("Resolve UFCS paths", [&]() {
ConvertHIR_ResolveUFCS(*hir_crate);
+ ConvertHIR_Bind(*hir_crate);
});
CompilePhaseV("Constant Evaluate", [&]() {
ConvertHIR_ConstantEvaluate(*hir_crate);
|