pslang/libs/jit/source/jit.cpp

16 lines
236 B
C++

#include <pslang/jit/jit.hpp>
namespace pslang::jit
{
compiled_module compile(ast::statement_list_ptr const & /* statements */, jit::abi abi)
{
return {
.data = {},
.code = {},
.entry_point = 0,
.abi = abi,
};
}
}