fix warning
authorMatthias Braun <matthias.braun@kit.edu>
Wed, 13 Jun 2012 14:53:12 +0000 (16:53 +0200)
committerMatthias Braun <matthias.braun@kit.edu>
Wed, 13 Jun 2012 14:53:12 +0000 (16:53 +0200)
ir/lower/lower_hl.c

index 136555f..88da2fd 100644 (file)
@@ -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
  */