summaryrefslogtreecommitdiff
path: root/src/format/dwarf/d_dwarf.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2008-08-17 21:13:03 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2008-08-17 21:13:03 (GMT)
commitf6f110acb8bf3243dffc527271c17619a078fcc4 (patch)
tree1e543cdf23b7bb646f36a51d21d18b91b92706c8 /src/format/dwarf/d_dwarf.c
parenta13b6baeeea114919d0e9eb25e35657b144437dc (diff)
Looked for prototyped functions using the registered abbreviations.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@17 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/dwarf/d_dwarf.c')
-rw-r--r--src/format/dwarf/d_dwarf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/format/dwarf/d_dwarf.c b/src/format/dwarf/d_dwarf.c
index 7537e34..17dc711 100644
--- a/src/format/dwarf/d_dwarf.c
+++ b/src/format/dwarf/d_dwarf.c
@@ -29,7 +29,7 @@
#include "abbrev.h"
#include "dwarf-int.h"
-
+#include "info.h"
@@ -63,9 +63,12 @@ dwarf_format *load_dwarf(const uint8_t *content, off_t length, exe_format *e_for
DBG_FORMAT(result)->e_format = e_format;
+ result->format = DWF_32_BITS;
test = load_dwarf_abbreviations(result);
+ test = load_dwarf_information(result);
+
return result;