From: Michael Beck Date: Thu, 5 Apr 2007 13:59:49 +0000 (+0000) Subject: renamed phase_t to ir_phase X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d7c2b50b22f67866b9b4eed4412cbb91750f1b29;p=libfirm renamed phase_t to ir_phase [r12665] --- diff --git a/ir/ana/phiclass.c b/ir/ana/phiclass.c index 8dc95f9cd..8945e3bf0 100644 --- a/ir/ana/phiclass.c +++ b/ir/ana/phiclass.c @@ -21,7 +21,7 @@ #include "irnodeset.h" struct _phi_classes_t { - phase_t ph; /* The phase object holding the irn data */ + ir_phase ph; /* The phase object holding the irn data */ pset *all_phi_classes; /* A set containing all Phi classes */ ir_graph *irg; /* The irg this is all about */ unsigned pure_phi_classes; /* Build pure Phi classes */ @@ -32,18 +32,18 @@ typedef struct _irn_phi_class_t { ir_node ***phi_cls; /* the array of node pointers representing the class */ } irn_phi_class_t; -static INLINE ir_node ***_get_phi_class(phase_t *ph, ir_node *irn) { +static INLINE ir_node ***_get_phi_class(ir_phase *ph, ir_node *irn) { irn_phi_class_t *ipc = phase_get_or_set_irn_data(ph, irn); return ipc->phi_cls; } -static INLINE void _set_phi_class(phase_t *ph, ir_node *irn, ir_node ***cls) { +static INLINE void _set_phi_class(ir_phase *ph, ir_node *irn, ir_node ***cls) { irn_phi_class_t *ipc = phase_get_or_set_irn_data(ph, irn); ipc->phi_cls = cls; } /* initialize data structure for given irn in given phase */ -static void *irn_phi_class_init(phase_t *ph, ir_node *irn, void *data) { +static void *irn_phi_class_init(ir_phase *ph, ir_node *irn, void *data) { irn_phi_class_t *ipc = data ? data : phase_alloc(ph, sizeof(ipc[0])); memset(ipc, 0, sizeof(ipc[0])); return ipc;