summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Machata <[email protected]>2011-03-19 11:53:31 +0100
committerPetr Machata <[email protected]>2011-03-19 11:53:31 +0100
commitc56740aafd46405f84e0419b7059ca6fa2500320 (patch)
tree69506e2c5905599694c518d65866a6eb9d3c5a80
parentbba33304321e07a24fb69ea7649c22bd22b49475 (diff)
dwarflint: Do the ET_REL layout starting on address > 0
-rw-r--r--dwarflint/sections.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwarflint/sections.cc b/dwarflint/sections.cc
index 4a8f6401..a9b2f0ce 100644
--- a/dwarflint/sections.cc
+++ b/dwarflint/sections.cc
@@ -68,7 +68,7 @@ namespace
/* Taken from libdwfl. */
GElf_Addr base = 0;
- GElf_Addr start = 0, end = 0, bias = 0;
+ GElf_Addr start = 0x1000, end = 0x1000, bias = 0;
bool first = true;
Elf_Scn *scn = NULL;