aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-05-15 13:46:07 -0700
committerMichael Forney <mforney@mforney.org>2019-05-15 17:54:52 -0700
commit46ec9b869105951521341db5d5a75aa55b156601 (patch)
tree6214bc72e143d9474a933ebc43454e574da5f318
parentd0f0b0a1006d5398b0d31a1b28e102bed5f4b49b (diff)
downloadcproc-46ec9b869105951521341db5d5a75aa55b156601.tar.xz
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.
-rw-r--r--decl.c4
1 files changed, 3 insertions, 1 deletions
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;