2026-05-21 00:31:25 +02:00

11 lines
178 B
C

#ifndef JIT_X86_H
#define JIT_X86_H
#include "codegen_x86.h"
#include <stdint.h>
typedef uint64_t (*JitFn)(void);
JitFn cg_block_emit_x86_machine_code(CgBlock* block);
#endif