xo-jit: cosmetic: code layout / comments

This commit is contained in:
Roland Conybeare 2024-06-19 18:22:24 -04:00
commit 39a8e8aad4
2 changed files with 5 additions and 5 deletions

View file

@ -465,8 +465,7 @@ namespace xo {
{
llvm::Value * test_ir = this->codegen(expr->test());
/** need test result in a variable
**/
/** need test result in a variable **/
llvm::Value * test_with_cmp_ir
= llvm_ir_builder_->CreateFCmpONE(test_ir,
llvm::ConstantFP::get(llvm_cx_->llvm_cx_ref(),
@ -538,7 +537,7 @@ namespace xo {
phi_node->addIncoming(when_false_ir, when_false_bb);
return phi_node;
}
} /*codegen_ifexpr*/
llvm::Value *
MachPipeline::codegen(ref::brw<Expression> expr)
@ -597,7 +596,8 @@ namespace xo {
llvm_exit_on_err(this->jit_->add_llvm_module(std::move(ts_module), tracker));
this->recreate_llvm_ir_pipeline();
}
} /*machgen_current_module*/
std::string
MachPipeline::mangle(const std::string & sym) const
{