X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fexecfreq.c;h=83c9e4c5020d6cff6b77b7294f7525c08a79794f;hb=a1e9069afa4fa1e16e2d176bcd7905d6a1ed4677;hp=b8e51804dc91a0bc48fffd77e90f873577accabc;hpb=abbf9492df1993d211412ba520feb81de0688c2a;p=libfirm diff --git a/ir/ana/execfreq.c b/ir/ana/execfreq.c index b8e51804d..83c9e4c50 100644 --- a/ir/ana/execfreq.c +++ b/ir/ana/execfreq.c @@ -61,7 +61,7 @@ #endif -#define EPSILON 1e-5 +#define EPSILON 1e-5 #define UNDEF(x) (fabs(x) < EPSILON) #define SEIDEL_TOLERANCE 1e-7 @@ -69,7 +69,7 @@ #define set_foreach(s,i) for ((i)=set_first((s)); (i); (i)=set_next((s))) -typedef struct _freq_t { +typedef struct freq_t { const ir_node *irn; int idx; double freq;