aboutsummaryrefslogtreecommitdiff
path: root/tcc.c
diff options
context:
space:
mode:
authorgrischka <grischka>2009-02-16 15:11:45 +0100
committergrischka <grischka>2009-04-18 15:07:08 +0200
commit3116744bdd9cd573eb5c8abd9e05147a78136dbc (patch)
tree63294a2137ddbea46774be90da178a88e6ae914a /tcc.c
parentb41fc95566f5dbc7f2ec5eec7853ab85d6c7b5f7 (diff)
downloadtinycc-3116744bdd9cd573eb5c8abd9e05147a78136dbc.tar.gz
tinycc-3116744bdd9cd573eb5c8abd9e05147a78136dbc.tar.bz2
i386: align=8 for double and long long
Diffstat (limited to 'tcc.c')
-rw-r--r--tcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcc.c b/tcc.c
index 0b731f3..f581f42 100644
--- a/tcc.c
+++ b/tcc.c
@@ -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;