From 8b425349642dcebefa26541930235a302a51e657 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 5 Jul 2019 23:22:36 -0700 Subject: Specify function name in error message --- qbe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbe.c b/qbe.c index f342723..46ba7e2 100644 --- a/qbe.c +++ b/qbe.c @@ -539,7 +539,7 @@ mkfunc(struct decl *decl, char *name, struct type *t, struct scope *s) /* allocate space for parameters */ for (p = t->func.params; p; p = p->next) { if (!p->name) - error(&tok.loc, "parameter name omitted in function definition"); + error(&tok.loc, "parameter name omitted in definition of function '%s'", name); pt = t->func.isprototype ? p->type : typepromote(p->type, -1); emittype(pt); p->value = xmalloc(sizeof(*p->value)); -- cgit v1.2.3