diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index ec1778bc35c..4735dabf644 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -2508,7 +2508,7 @@ tree build_array_declarator (tree expr, tree quals, int static_p, int vla_unspec_p) { tree decl; - decl = build_nt (ARRAY_REF, NULL_TREE, expr); + decl = build_nt (ARRAY_REF, NULL_TREE, expr, NULL_TREE, NULL_TREE); TREE_TYPE (decl) = quals; TREE_STATIC (decl) = (static_p ? 1 : 0); if (pedantic && !flag_isoc99) |