|
From: nasm-bot f. C. G. <gor...@gm...> - 2016-04-21 06:18:30
|
Commit-ID: 2f5dca5b44de67643729d14c0001707706affa26 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=2f5dca5b44de67643729d14c0001707706affa26 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Fri, 8 Apr 2016 00:44:22 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Mon, 11 Apr 2016 00:07:14 +0300 output: Elf32 -- Shuffle few lines to make it close to other code Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/outelf32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outelf32.c b/output/outelf32.c index 494710e..ace4630 100644 --- a/output/outelf32.c +++ b/output/outelf32.c @@ -819,12 +819,12 @@ static void elf_out(int32_t segto, const void *data, } case OUT_REL1ADR: - bytes = 1; reltype = R_386_PC8; + bytes = 1; goto rel12adr; case OUT_REL2ADR: - bytes = 2; reltype = R_386_PC16; + bytes = 2; goto rel12adr; rel12adr: |