fix trailing whitespaces and tabulators in the middle of a line
[libfirm] / ir / ana / execfreq.c
index b8e5180..83c9e4c 100644 (file)
@@ -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;