From 8483b70ebfc50f91a989ea4ca2d35b794c0802d1 Mon Sep 17 00:00:00 2001 From: "Eric W. Biederman" Date: Wed, 17 Mar 2010 00:23:34 +0000 Subject: [PATCH] Catch non-static arrays in romcc. Not allowed. Signed-off-by: Eric W. Biederman Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5230 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/romcc/romcc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/util/romcc/romcc.c b/util/romcc/romcc.c index b961d66c3..f00f93f32 100644 --- a/util/romcc/romcc.c +++ b/util/romcc/romcc.c @@ -13473,6 +13473,10 @@ static struct triple *do_decl(struct compile_state *state, if ((type->type & TYPE_MASK) == TYPE_FUNCTION) { error(state, 0, "Function prototypes not supported"); } + if (ident && + ((type->type & TYPE_MASK) == TYPE_ARRAY) && + ((type->type & STOR_MASK) != STOR_STATIC)) + error(state, 0, "non static arrays not supported"); if (ident && ((type->type & STOR_MASK) == STOR_STATIC) && ((type->type & QUAL_CONST) == 0)) { -- 2.25.1