X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbearch.c;h=f25d0dfd3254b69d804ebd0b99b39856ccd36c8e;hb=d6b7e949a935d6f5a41494982360017651d691cc;hp=23f023f6e7cceac10b4c85baca6d9dec3683d778;hpb=a4cf97f91f44fcb14d08f9295bcdef8da372a54d;p=libfirm diff --git a/ir/be/bearch.c b/ir/be/bearch.c index 23f023f6e..f25d0dfd3 100644 --- a/ir/be/bearch.c +++ b/ir/be/bearch.c @@ -107,6 +107,12 @@ entity *arch_get_frame_entity(const arch_env_t *env, ir_node *irn) return ops->impl->get_frame_entity(ops, irn); } +void arch_set_frame_entity(const arch_env_t *env, ir_node *irn, entity *ent) +{ + const arch_irn_ops_t *ops = get_irn_ops(env, irn); + ops->impl->set_frame_entity(ops, irn, ent); +} + arch_inverse_t *arch_get_inverse(const arch_env_t *env, const ir_node *irn, int i, arch_inverse_t *inverse, struct obstack *obstack) { const arch_irn_ops_t *ops = get_irn_ops(env, irn);