summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index eb4bb478..8ee50aea 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -180,6 +180,9 @@ int main(int argc, char *argv[])
CompilePhaseV("LoadCrates", [&]() {
crate.load_externs();
});
+ //CompilePhaseV("Temp output - Parsed", [&]() {
+ // Dump_Rust( FMT(params.outfile << "_0_pp.rs").c_str(), crate );
+ // });
// Iterate all items in the AST, applying syntax extensions
CompilePhaseV("Expand", [&]() {
@@ -188,7 +191,7 @@ int main(int argc, char *argv[])
// XXX: Dump crate before resolve
CompilePhaseV("Temp output - Parsed", [&]() {
- Dump_Rust( FMT(params.outfile << "_0_pp.rs").c_str(), crate );
+ Dump_Rust( FMT(params.outfile << "_0a_exp.rs").c_str(), crate );
});
if( params.last_stage == ProgramParams::STAGE_EXPAND ) {