From 46ec9b869105951521341db5d5a75aa55b156601 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Wed, 15 May 2019 13:46:07 -0700 Subject: decl: Don't emit function if inline is specified without static or extern This partially addresses #42. Now, no duplicate definitions will be emitted, but we also don't emit a definition when a later declaration is specified with extern. --- decl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/decl.c b/decl.c index d532029..e4187e4 100644 --- a/decl.c +++ b/decl.c @@ -944,7 +944,9 @@ decl(struct scope *s, struct func *f) s = mkscope(&filescope); f = mkfunc(name, t, s); stmt(f, s); - emitfunc(f, d->linkage == LINKEXTERN); + /* XXX: need to keep track of function in case a later declaration specifies extern */ + if (!(fs & FUNCINLINE) || sc) + emitfunc(f, d->linkage == LINKEXTERN); s = delscope(s); delfunc(f); d->defined = true; -- cgit v1.2.3