Added support for SymConst(ofs_ent)
[libfirm] / ir / be / beuses_t.h
index 5fc7e09..4212791 100644 (file)
 
 #include "beuses.h"
 
-/**
- * An association between a node and a point in time.
- */
-struct _loc_t {
-  ir_node *irn;  /**< A node. */
-  unsigned time;       /**< A time. */
-};
-
-#define LOC_IS_INFINITE(loc) USES_IS_INIFINITE((loc)->time)
-
-/**
- * Comparison function for locations.
- * @param a The first location.
- * @param b The second one.
- * @return see qsort(3) for semantic of the compare functions.
- */
-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 */