fixed some minor bugs
[libfirm] / ir / be / beuses_t.h
index 73c706b..b74a1d5 100644 (file)
@@ -19,7 +19,7 @@
  * An association between a node and a point in time.
  */
 struct _loc_t {
-  const ir_node *irn;  /**< A node. */
+  ir_node *irn;  /**< A node. */
   unsigned time;       /**< A time. */
 };
 
@@ -33,17 +33,4 @@ struct _loc_t {
  */
 int loc_compare(const void *loc1, const void *loc2);
 
-
-static INLINE loc_t *
-be_get_next_use_loc(
-    be_uses_t *uses,
-    const loc_t *from,
-    loc_t *loc)
-{
-  loc->time = be_get_next_use(uses, from->irn, from->time, loc->irn);
-  return loc;
-}
-
-
-
 #endif /* _BEUSES_T_H */