lang/runtime.h

10 lines
180 B
C
Raw Normal View History

2021-12-21 01:18:22 +01:00
#ifndef __RUNTIME_H__
#define __RUNTIME_H__
#include "ir.h"
Value eval_arith(IRInstr instr, const Value *lhs, const Value *rhs);
Value zero_val(Type ty);
#endif /* RUNTIME_H */