summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2010-11-30 17:39:55 -0800
committerRoland McGrath <roland@redhat.com>2010-11-30 17:39:55 -0800
commit33d305fc63d88ce163fd3aba41a0dd0e1a74be38 (patch)
treeb17ba49a479009c901db28cbbee9f7b149f99c91
parent8f656c750057f8a333bb6316ee80915db502ff67 (diff)
downloadelfutils-33d305fc63d88ce163fd3aba41a0dd0e1a74be38.tar.gz
dwfl_module_relocations: Remove over-eager assert.
-rw-r--r--libdwfl/ChangeLog4
-rw-r--r--libdwfl/derelocate.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/libdwfl/ChangeLog b/libdwfl/ChangeLog
index dd4eb10c..c5746c87 100644
--- a/libdwfl/ChangeLog
+++ b/libdwfl/ChangeLog
@@ -1,3 +1,7 @@
+2010-11-30 Roland McGrath <roland@redhat.com>
+
+ * derelocate.c (dwfl_module_relocations): Remove over-eager assert.
+
2010-11-12 Roland McGrath <roland@redhat.com>
* libdwflP.h (struct Dwfl_Module): New member main_bias.
diff --git a/libdwfl/derelocate.c b/libdwfl/derelocate.c
index 483b75eb..ba6d9db4 100644
--- a/libdwfl/derelocate.c
+++ b/libdwfl/derelocate.c
@@ -1,5 +1,5 @@
/* Recover relocatibility for addresses computed from debug information.
- Copyright (C) 2005-2009 Red Hat, Inc.
+ Copyright (C) 2005-2010 Red Hat, Inc.
This file is part of Red Hat elfutils.
Red Hat elfutils is free software; you can redistribute it and/or modify
@@ -240,7 +240,6 @@ dwfl_module_relocations (Dwfl_Module *mod)
case ET_EXEC:
assert (mod->main.vaddr == mod->low_addr);
- assert (mod->debug.address_sync == mod->main.address_sync);
break;
}