remove irsimpletype stuff (unused/broken)
[libfirm] / ir / be / bespillbelady.c
index 565af05..d9d68d0 100644 (file)
@@ -75,7 +75,7 @@ typedef struct loc_t {
        bool              spilled;  /**< value was already spilled on this path */
 } loc_t;
 
-typedef struct _workset_t {
+typedef struct workset_t {
        unsigned len;     /**< current length */
        loc_t    vals[0]; /**< array of the values/distances in this working set */
 } workset_t;
@@ -255,11 +255,10 @@ static inline ir_node *workset_get_val(const workset_t *workset, unsigned idx)
  * @p v  A variable to put the current value in
  * @p i  An integer for internal use
  */
-#define workset_foreach(ws, v, i)      \
+#define workset_foreach(ws, v, i) \
        for (i=0; v=(i < ws->len) ? ws->vals[i].node : NULL, i < ws->len; ++i)
 
-typedef struct _block_info_t
-{
+typedef struct block_info_t {
        workset_t *start_workset;
        workset_t *end_workset;
 } block_info_t;
@@ -543,7 +542,7 @@ static void decide_start_workset(const ir_node *block)
        unsigned    i;
        int         in;
        unsigned    ws_count;
-       int             free_slots, free_pressure_slots;
+       int         free_slots, free_pressure_slots;
        unsigned    pressure;
        int         arity;
        workset_t **pred_worksets;