[Kaleidoscope][BuildingAJIT] Remove leftover debugging output statements.

llvm-svn: 270919
This commit is contained in:
Lang Hames 2016-05-26 21:27:52 +00:00
parent 0e885b03d9
commit f6d502d819
1 changed files with 0 additions and 4 deletions

View File

@ -127,15 +127,11 @@ private:
FPM->add(createCFGSimplificationPass());
FPM->doInitialization();
dbgs() << "<pre-opt>\n" << *M << "</pre-opt>\n";
// Run the optimizations over all functions in the module being added to
// the JIT.
for (auto &F : *M)
FPM->run(F);
dbgs() << "<post-opt>\n" << *M << "</post-opt>\n";
return M;
}