Files
ivy/mie/include/mie/alloca.h

13 lines
174 B
C

#ifndef MIE_ALLOCA_H_
#define MIE_ALLOCA_H_
#include <mie/instr.h>
#include <mie/type.h>
struct mie_alloca {
struct mie_instr a_base;
struct mie_type *a_type;
};
#endif