From 6e457e2a7da38bf5ea9779f30deb21dbb78f2ebd Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sun, 17 Feb 2019 12:04:40 -0800 Subject: Only need to read parameter declarations when identifier list is non-empty --- decl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decl.c b/decl.c index cb2e2f4..0e9c776 100644 --- a/decl.c +++ b/decl.c @@ -817,7 +817,7 @@ decl(struct scope *s, struct function *f) t->func.isnoreturn |= fs & FUNCNORETURN; if (f && sc && sc != SCEXTERN) /* 6.7.1p7 */ error(&tok.loc, "function '%s' with block scope may only have storage class 'extern'", name); - if (!t->func.isprototype && t->func.paraminfo) { + if (!t->func.isprototype && t->func.params) { if (!allowfunc) error(&tok.loc, "function declaration not allowed"); /* collect type information for parameters before we check compatibility */ -- cgit v1.2.3