11 lines
178 B
C
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 |