diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c-typeck.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a63b303..0e5933e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-09-26 DJ Delorie <dj@redhat.com> + + * c-typeck.c (digest_init): Check for sizeless arrays. + 2001-09-26 Richard Henderson <rth@redhat.com> * optabs.c (init_one_libfunc): Create a dummy function type diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index c3d11fe..c407f16 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4690,6 +4690,7 @@ digest_init (type, init, require_constant, constructor_constant) TREE_TYPE (inside_init) = type; if (TYPE_DOMAIN (type) != 0 + && TYPE_SIZE (type) != 0 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST /* Subtract 1 (or sizeof (wchar_t)) because it's ok to ignore the terminating null char |