diff options
author | Michael Forney <mforney@mforney.org> | 2019-05-15 13:46:07 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-05-15 17:54:52 -0700 |
commit | 46ec9b869105951521341db5d5a75aa55b156601 (patch) | |
tree | 6214bc72e143d9474a933ebc43454e574da5f318 | |
parent | d0f0b0a1006d5398b0d31a1b28e102bed5f4b49b (diff) | |
download | cproc-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |