diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-24 13:34:01 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-24 13:34:01 +0800 |
commit | ba6f4df093bc8bfc330b2205279f3f0fca225e77 (patch) | |
tree | 685633cde5f8ccc24675a18564cc818cc7e2dec9 /src/main.cpp | |
parent | b96c1a08cec9be6cc29f47eb151c3ad91075a819 (diff) | |
download | mrust-ba6f4df093bc8bfc330b2205279f3f0fca225e77.tar.gz |
HIR Lower - Lower impl blocks
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index c949d703..a02fbac6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -148,7 +148,7 @@ int main(int argc, char *argv[]) });
CompilePhaseV("Constant Evaluate", [&]() {
- //ConvertHIR_ConstantEvaluate(hir_crate);
+ ConvertHIR_ConstantEvaluate(*hir_crate);
});
// Typecheck / type propagate module (type annotations of all values)
|