diff options
author | Lang Hames <lhames@gmail.com> | 2016-05-26 21:27:52 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2016-05-26 21:27:52 +0000 |
commit | f6d502d819100ceb2d685c1d17fa72f7d767c3c3 (patch) | |
tree | 9c9901f8abc773deecb6243dc12682be7f92aaaa | |
parent | 0e885b03d997e27c030d9fc6f45650fc29af3a73 (diff) | |
download | bcm5719-llvm-f6d502d819100ceb2d685c1d17fa72f7d767c3c3.tar.gz bcm5719-llvm-f6d502d819100ceb2d685c1d17fa72f7d767c3c3.zip |
[Kaleidoscope][BuildingAJIT] Remove leftover debugging output statements.
llvm-svn: 270919
-rw-r--r-- | llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h index b9cfcaf26ce..55a02ab25cf 100644 --- a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h +++ b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h @@ -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; } |