i386: align=8 for double and long long

This commit is contained in:
grischka 2009-02-16 15:11:45 +01:00
parent b41fc95566
commit 3116744bdd

2
tcc.c
View File

@ -6255,7 +6255,7 @@ static int type_size(CType *type, int *a)
return LDOUBLE_SIZE;
} else if (bt == VT_DOUBLE || bt == VT_LLONG) {
#ifdef TCC_TARGET_I386
*a = 4;
*a = 8;
#elif defined(TCC_TARGET_ARM)
#ifdef TCC_ARM_EABI
*a = 8;