From: nasm-bot f. C. G. <gor...@gm...> - 2018-06-30 23:03:23
|
Commit-ID: 70d429676bd5db1a5d437ee6f796fd4f0e122434 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=70d429676bd5db1a5d437ee6f796fd4f0e122434 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 1 Jul 2018 01:59:07 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 1 Jul 2018 02:00:12 +0300 labels: Add missing backend type for extern symbols Typo in 98578071b9d71ecaa2344dd9c185237c1765041e https://bugzilla.nasm.us/show_bug.cgi?id=3392494 Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- asm/labels.c | 1 + 1 file changed, 1 insertion(+) diff --git a/asm/labels.c b/asm/labels.c index ab27a61..aad473e 100644 --- a/asm/labels.c +++ b/asm/labels.c @@ -175,6 +175,7 @@ static void out_symdef(union label *lptr) /* Clean up this hack... */ switch(lptr->defn.type) { case LBL_GLOBAL: + case LBL_EXTERN: backend_type = 1; backend_offset = lptr->defn.offset; break; |