acc/include/target.h
szdytom 376c7c3eeb replace quad by ssa ir
Signed-off-by: szdytom <szdytom@163.com>
2023-06-14 21:15:34 +08:00

14 lines
164 B
C

#ifndef ACC_TARGET_H
#define ACC_TARGET_H
// Target types
enum {
TARGET_AST,
TARGET_ACIR,
TARGET_NULL,
};
int target_parse(const char *target_string);
#endif