diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index f10f4b0..92d8403 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -4684,7 +4684,12 @@ grokdeclarator (declarator, declspecs, decl_context, initialized) if (TREE_CODE (type) == ARRAY_TYPE && COMPLETE_TYPE_P (type) && TREE_OVERFLOW (TYPE_SIZE (type))) - error ("size of array `%s' is too large", name); + { + error ("size of array `%s' is too large", name); + /* If we proceed with the array type as it is, we'll eventully + crash in tree_low_cst(). */ + type = error_mark_node; + } /* If this is declaring a typedef name, return a TYPE_DECL. */ |