X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeuses_t.h;h=b74a1d51a4d2cca30d95b0d17661da0fb866f55f;hb=7438ae082c9ec7658ccd006b40aa62084aedca2d;hp=73c706b6f6c41a782af033933c7861c67eadcb4c;hpb=1013579946ac0cdb7e1461a6b52006e01d87716b;p=libfirm diff --git a/ir/be/beuses_t.h b/ir/be/beuses_t.h index 73c706b6f..b74a1d51a 100644 --- a/ir/be/beuses_t.h +++ b/ir/be/beuses_t.h @@ -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 */