From 318ef2a2cd282f47346facdf87b2553fe439128e Mon Sep 17 00:00:00 2001 From: 0xAX <0xAX@users.noreply.github.com> Date: Wed, 9 Mar 2016 00:57:20 +0600 Subject: [PATCH] Update linkers.md --- Misc/linkers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Misc/linkers.md b/Misc/linkers.md index f82736f..7ede80c 100644 --- a/Misc/linkers.md +++ b/Misc/linkers.md @@ -118,11 +118,11 @@ $ objdump -S -r main.o ... 14: e8 00 00 00 00 callq 19 - 15: R_X86_64_PC32 factorial-0x4 + 15: R_X86_64_PC32 factorial-0x4 19: 89 c6 mov %eax,%esi ... 25: e8 00 00 00 00 callq 2a - 26: R_X86_64_PC32 printf-0x4 + 26: R_X86_64_PC32 printf-0x4 2a: b8 00 00 00 00 mov $0x0,%eax ... ``` @@ -136,7 +136,7 @@ Relocation is the process of connecting symbolic references with symbolic defini ``` 14: e8 00 00 00 00 callq 19 - 15: R_X86_64_PC32 factorial-0x4 + 15: R_X86_64_PC32 factorial-0x4 19: 89 c6 mov %eax,%esi ```