|
From: <sv...@va...> - 2011-10-03 17:06:42
|
Author: tom
Date: 2011-10-03 18:01:57 +0100 (Mon, 03 Oct 2011)
New Revision: 12089
Log:
Fix another read_UInt that should be read_Addr.
Modified:
trunk/coregrind/m_debuginfo/readdwarf.c
Modified: trunk/coregrind/m_debuginfo/readdwarf.c
===================================================================
--- trunk/coregrind/m_debuginfo/readdwarf.c 2011-10-03 16:55:26 UTC (rev 12088)
+++ trunk/coregrind/m_debuginfo/readdwarf.c 2011-10-03 17:01:57 UTC (rev 12089)
@@ -1503,7 +1503,7 @@
ptr = dwarf1l + stmt_list;
len = ML_(read_Int)(ptr); ptr += sizeof(Int);
- base = ML_(read_UInt)(ptr); ptr += sizeof(void*); // FIXME: read_encoded_Addr ??
+ base = ML_(read_Addr)(ptr); ptr += sizeof(void*);
len -= (sizeof(Int) + sizeof(void*));
while (len > 0) {
UInt line;
|