mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 19:50:35 +02:00
13 lines
271 B
C
13 lines
271 B
C
#ifndef _CODEGEN_IR_H_
|
|
#define _CODEGEN_IR_H_
|
|
|
|
#include "codegen_ir_defs.h"
|
|
|
|
ir_data_t *codegen_ir_init();
|
|
|
|
void codegen_ir_set_unroll(int count, int start, int first_instruction);
|
|
void codegen_ir_compile(ir_data_t *ir, codeblock_t *block);
|
|
|
|
|
|
#endif /* _CODEGEN_IR_H_ */
|