We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e92dc8 commit 9752ff9Copy full SHA for 9752ff9
src/dev/engine/internal/llvmcodebuilder.cpp
@@ -400,12 +400,6 @@ std::shared_ptr<ExecutableCode> LLVMCodeBuilder::finalize()
400
// Optimize
401
optimize();
402
403
-#ifdef PRINT_LLVM_IR
404
- std::cout << std::endl << "=== LLVM IR (" << m_module->getName().str() << ") ===" << std::endl;
405
- m_module->print(llvm::outs(), nullptr);
406
- std::cout << "==============" << std::endl << std::endl;
407
-#endif
408
-
409
return std::make_shared<LLVMExecutableCode>(std::move(m_module));
410
}
411
0 commit comments