compiler-lightning/include/codegen.h

15 lines
233 B
C
Raw Normal View History

2025-02-03 18:35:31 +13:00
#include <ast.h>
#include <lightning.h>
#ifndef __CODEGEN_H__
#define __CODEGEN_H__
typedef union {
void* func;
jit_reg_t reg;
} CodegenResult;
CodegenResult codegen(const char* argv0, ASTNode node);
#endif