From 0f2b20830e9f04baefd442e1c4a1fa8a39a0f4a4 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 22 Jun 2007 12:00:59 +0000 Subject: [PATCH] attribute is pointless here and should have been __attribute__ [r14717] --- include/libfirm/adt/bitset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1