From: Matthias Braun Date: Fri, 22 Jun 2007 12:00:59 +0000 (+0000) Subject: attribute is pointless here and should have been __attribute__ X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0f2b20830e9f04baefd442e1c4a1fa8a39a0f4a4;p=libfirm attribute is pointless here and should have been __attribute__ [r14717] --- diff --git a/include/libfirm/adt/bitset.h b/include/libfirm/adt/bitset.h index bdd70606c..409ef3c96 100644 --- a/include/libfirm/adt/bitset.h +++ b/include/libfirm/adt/bitset.h @@ -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;