diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index ede62f70a30..815c8e1a601 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1,5 +1,6 @@ /* Subroutines shared by all languages that are variants of C. - Copyright (C) 1992, 93-98, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 + Free Software Foundation, Inc. This file is part of GNU CC. @@ -733,7 +734,7 @@ decl_attributes (node, attributes, prefix_attributes) else { TREE_TYPE (decl) = type = typefm; - DECL_SIZE (decl) = 0; + DECL_SIZE (decl) = DECL_SIZE_UNIT (decl) = 0; layout_decl (decl, 0); } } |