X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fphiclass.c;h=421cef92f1ae0620a0df5f0a20cb2d4de4f59ab0;hb=0c8c685ae82c8d90cb9342e134a10ce6b358bda4;hp=ccccc356bbcff8a461fd33a49189e307c409dd54;hpb=0fbcef83aa6060534172bb13e71cdadb04428806;p=libfirm diff --git a/ir/ana/phiclass.c b/ir/ana/phiclass.c index ccccc356b..421cef92f 100644 --- a/ir/ana/phiclass.c +++ b/ir/ana/phiclass.c @@ -26,9 +26,7 @@ */ #include "config.h" -#ifdef HAVE_STDLIB_H -# include -#endif +#include #include "irnode.h" #include "debug.h" @@ -51,12 +49,12 @@ 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(ir_phase *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(ir_phase *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; }