X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Fvalueset.h;h=027e708eeaf7facd7965120633861d9335e63f65;hb=3f57d89fcb7055fc726a41aa63214aab97854cdf;hp=d2d45a3f692df96d18cca55bc0ff9f008fa47606;hpb=e07b61c6ed5d198a484761f8a40a4f26520d964d;p=libfirm diff --git a/ir/ir/valueset.h b/ir/ir/valueset.h index d2d45a3f6..027e708ee 100644 --- a/ir/ir/valueset.h +++ b/ir/ir/valueset.h @@ -26,8 +26,6 @@ #ifndef _FIRM_VALUESET_H_ #define _FIRM_VALUESET_H_ -#include "firm_config.h" - #include "firm_types.h" #include "xmalloc.h" #include "list.h" @@ -88,7 +86,7 @@ void ir_valueset_destroy(ir_valueset_t *valueset); * @param expected_elements Number of elements expected in the value set (roughly) * @return The initialized value set */ -static INLINE ir_valueset_t *ir_valueset_new(size_t expected_elements) { +static inline ir_valueset_t *ir_valueset_new(size_t expected_elements) { ir_valueset_t *res = XMALLOC(ir_valueset_t); ir_valueset_init_size(res, expected_elements); return res; @@ -97,7 +95,7 @@ static INLINE ir_valueset_t *ir_valueset_new(size_t expected_elements) { /** * Destroys a value set and frees the memory of the set itself. */ -static INLINE void ir_valueset_del(ir_valueset_t *valueset) { +static inline void ir_valueset_del(ir_valueset_t *valueset) { ir_valueset_destroy(valueset); xfree(valueset); }