diff options
Diffstat (limited to 'gcc/config/arm/arm.c')
-rw-r--r-- | gcc/config/arm/arm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index c12ea52..c4d9ffd 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -14691,8 +14691,7 @@ arm_get_cookie_size (tree type) if (!TARGET_AAPCS_BASED) return default_cxx_get_cookie_size (type); - size = build_int_2 (8, 0); - TREE_TYPE (size) = sizetype; + size = build_int_cst (sizetype, 8, 0); return size; } |