diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/main.cpp b/src/main.cpp index b6dd9254..963491d5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -69,9 +69,6 @@ void CompilePhaseV(const char *name, Fcn f) { /// main!
int main(int argc, char *argv[])
{
- AST_InitProvidedModule();
-
-
ProgramParams params(argc, argv);
// Set up cfg values
@@ -104,11 +101,6 @@ int main(int argc, char *argv[]) CompilePhaseV("Expand", [&]() {
Expand(crate);
});
-
- // Run a quick post-parse pass
- CompilePhaseV("PostParse", [&]() {
- crate.index_impls();
- });
// XXX: Dump crate before resolve
CompilePhaseV("Temp output - Parsed", [&]() {
|