attribute is pointless here and should have been __attribute__
authorMatthias Braun <matze@braunis.de>
Fri, 22 Jun 2007 12:00:59 +0000 (12:00 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 22 Jun 2007 12:00:59 +0000 (12:00 +0000)
[r14717]

include/libfirm/adt/bitset.h

index bdd7060..409ef3c 100644 (file)
@@ -79,7 +79,7 @@ typedef struct _bitset_t {
  */
 static INLINE bitset_t *_bitset_prepare(void *area, bitset_pos_t size)
 {
-       bitset_t *__attribute((aligned(4))) ptr = area;
+       bitset_t *ptr = area;
        memset(ptr, 0, BS_TOTAL_SIZE(size));
        ptr->units = BS_UNITS(size);
        ptr->size  = size;