diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-01 21:42:19 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-01 21:42:19 +0800 |
commit | 5967b5ac48e1fcb50ce673fc96691392e2ae2692 (patch) | |
tree | 940029692aaad862eb8e92d0a79e43fdbee35042 /src/main.cpp | |
parent | d0bb03758d31dcba938e95bd2ee155bb798a9b70 (diff) | |
download | mrust-5967b5ac48e1fcb50ce673fc96691392e2ae2692.tar.gz |
HIR - Store and use annotations for CoerceUnsized (and prepare markings for other traits)
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 cfa39976..c97b4946 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -249,6 +249,7 @@ int main(int argc, char *argv[]) CompilePhaseV("Resolve Type Aliases", [&]() {
ConvertHIR_ExpandAliases(*hir_crate);
});
+ // Set up bindings and other useful information.
CompilePhaseV("Resolve Bind", [&]() {
ConvertHIR_Bind(*hir_crate);
});
|