xo-jit: cosmetic: code layout

This commit is contained in:
Roland Conybeare 2024-06-19 18:24:06 -04:00
commit 0273a8b8df
2 changed files with 14 additions and 3 deletions

View file

@ -72,9 +72,10 @@ namespace xo {
std::make_unique<ConcurrentIRCompiler>(std::move(jtmb))),
dest_dynamic_lib_(this->xsession_->createBareJITDylib("<main>"))
{
dest_dynamic_lib_.addGenerator(
cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess(
data_layout_.getGlobalPrefix())));
dest_dynamic_lib_.addGenerator
(cantFail(DynamicLibrarySearchGenerator::GetForCurrentProcess
(data_layout_.getGlobalPrefix())));
if (jtmb.getTargetTriple().isOSBinFormatCOFF()) {
object_layer_.setOverrideObjectFlagsWithResponsibilityFlags(true);
object_layer_.setAutoClaimResponsibilityForObjectSymbols(true);

10
src/jit/Jit.cpp Normal file
View file

@ -0,0 +1,10 @@
/* @file Jit.cpp */
#include "Jit.hpp"
namespace xo {
namespace jit {
} /*namespace jit*/
} /*namespace xo*/
/* end Jit.cpp */