Files
ivy/mie/include/mie/phi.h

20 lines
292 B
C

#ifndef MIE_PHI_H_
#define MIE_PHI_H_
#include <mie/instr.h>
struct mie_phi_edge {
struct mie_block *e_incoming_block;
struct mie_value *e_value;
};
struct mie_phi {
struct mie_instr p_base;
struct mie_type *p_type;
unsigned int p_nr_edges;
struct mie_phi_edge *p_edges;
};
#endif