X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeuses.c;h=56108d3b35882a960c0e9dfcf37bff1ec4e72138;hb=5474a1c188c9d59eea2c915515980cd9cbab58d8;hp=248ea139816f96177464e4b29148e95f4fd3f494;hpb=c8f01c5b222ed1ecfc47568d9fc711aa6a8a4274;p=libfirm diff --git a/ir/be/beuses.c b/ir/be/beuses.c index 248ea1398..56108d3b3 100644 --- a/ir/be/beuses.c +++ b/ir/be/beuses.c @@ -22,7 +22,6 @@ * @brief Methods to compute when a value will be used again. * @author Sebastian Hack, Matthias Braun * @date 27.06.2005 - * @version $Id$ */ #include "config.h" @@ -40,6 +39,7 @@ #include "irgraph_t.h" #include "iredges_t.h" #include "irdom_t.h" +#include "util.h" #include "be_t.h" #include "beutil.h" @@ -98,7 +98,7 @@ static const be_use_t *get_or_set_use_block(be_uses_t *env, const ir_node *block, const ir_node *def) { - unsigned hash = HASH_COMBINE(hash_irn(block), hash_irn(def)); + unsigned hash = hash_combine(hash_irn(block), hash_irn(def)); be_use_t temp; be_use_t* result;