X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fset.c;h=eceee451cae49f7eda3e62117463720f4dbf5ec9;hb=38249b0311df91904bb3a566a770efe650f40efc;hp=6411e38efe6f7c5e602b79706cec73424966114d;hpb=e07b61c6ed5d198a484761f8a40a4f26520d964d;p=libfirm diff --git a/ir/adt/set.c b/ir/adt/set.c index 6411e38ef..eceee451c 100644 --- a/ir/adt/set.c +++ b/ir/adt/set.c @@ -43,11 +43,7 @@ TODO: Fix Esmond's ugly MixedCapsIdentifiers ;-> */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -#include "firm_config.h" +#include "config.h" #ifdef PSET # define SET pset @@ -130,7 +126,7 @@ MANGLEP(stats) (SET *table) table->naccess, table->ncollision, table->nkey, table->ndups, table->max_chain_len, nfree); } -static INLINE void +static inline void stat_chain_len (SET *table, int chain_len) { table->ncollision += chain_len; @@ -248,7 +244,7 @@ MANGLEP(count) (SET *table) * do one iteration step, return 1 * if still data in the set, 0 else */ -static INLINE int +static inline int iter_step (SET *table) { if (++table->iter_j >= SEGMENT_SIZE) { @@ -309,7 +305,7 @@ MANGLEP(break) (SET *table) /* * limit the hash value */ -static INLINE unsigned +static inline unsigned Hash (SET *table, unsigned h) { unsigned address; @@ -323,7 +319,7 @@ Hash (SET *table, unsigned h) * returns non-zero if the number of elements in * the set is greater then number of segments * MAX_LOAD_FACTOR */ -static INLINE int +static inline int loaded (SET *table) { return ( ++table->nkey