X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firnodeset.h;h=330caa620ae3762bb2cbb6a834763e34e1f6b7a7;hb=af0115376ccdcc72e0643caf221407218f4504f0;hp=080f451652add4f6cbea7fc971aaf5ba2b37ca5f;hpb=e07b61c6ed5d198a484761f8a40a4f26520d964d;p=libfirm diff --git a/ir/ir/irnodeset.h b/ir/ir/irnodeset.h index 080f45165..330caa620 100644 --- a/ir/ir/irnodeset.h +++ b/ir/ir/irnodeset.h @@ -30,8 +30,6 @@ #ifndef _FIRM_IRNODESET_H_ #define _FIRM_IRNODESET_H_ -#include "firm_config.h" - #include "firm_types.h" #include "xmalloc.h" @@ -89,7 +87,7 @@ void ir_nodeset_destroy(ir_nodeset_t *nodeset); * @param expected_elements Number of elements expected in the nodeset (roughly) * @return The initialized nodeset */ -static INLINE ir_nodeset_t *ir_nodeset_new(size_t expected_elements) { +static inline ir_nodeset_t *ir_nodeset_new(size_t expected_elements) { ir_nodeset_t *res = XMALLOC(ir_nodeset_t); ir_nodeset_init_size(res, expected_elements); return res; @@ -98,7 +96,7 @@ static INLINE ir_nodeset_t *ir_nodeset_new(size_t expected_elements) { /** * Destroys a nodeset and frees the memory of the nodeset itself. */ -static INLINE void ir_nodeset_del(ir_nodeset_t *nodeset) { +static inline void ir_nodeset_del(ir_nodeset_t *nodeset) { ir_nodeset_destroy(nodeset); xfree(nodeset); }