From: Matthias Braun Date: Wed, 13 Jun 2012 14:53:12 +0000 (+0200) Subject: fix warning X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=f154d31ceefcf166aac2984d27278ec311ba2e37;p=libfirm fix warning --- diff --git a/ir/lower/lower_hl.c b/ir/lower/lower_hl.c index 136555ff0..88da2fd68 100644 --- a/ir/lower/lower_hl.c +++ b/ir/lower/lower_hl.c @@ -270,20 +270,6 @@ static void lower_symconst(ir_node *symc) } } -/** - * Checks, whether a size is an integral size - * - * @param size the size on bits - */ -static int is_integral_size(int size) -{ - /* must be a 2^n */ - if (size & (size-1)) - return 0; - /* must be at least byte size */ - return size >= 8; -} - /** * lowers IR-nodes, called from walker */