|
From: <sv...@va...> - 2012-07-18 10:47:49
|
sewardj 2012-07-18 11:47:38 +0100 (Wed, 18 Jul 2012)
New Revision: 12754
Log:
Un-break the build on MacOS, following r12742 (initial support for DWZ
compressed debuginfo).
Modified files:
trunk/coregrind/m_debuginfo/readmacho.c
Modified: trunk/coregrind/m_debuginfo/readmacho.c (+7 -2)
===================================================================
--- trunk/coregrind/m_debuginfo/readmacho.c 2012-07-16 23:39:24 +01:00 (rev 12753)
+++ trunk/coregrind/m_debuginfo/readmacho.c 2012-07-18 11:47:38 +01:00 (rev 12754)
@@ -1087,7 +1087,8 @@
NULL, 0,
debug_abbv_img, debug_abbv_sz,
debug_line_img, debug_line_sz,
- debug_str_img, debug_str_sz );
+ debug_str_img, debug_str_sz,
+ NULL, 0 /* ALT .debug_str */ );
/* The new reader: read the DIEs in .debug_info to acquire
information on variable types and locations. But only if
@@ -1102,7 +1103,11 @@
debug_line_img, debug_line_sz,
debug_str_img, debug_str_sz,
debug_ranges_img, debug_ranges_sz,
- debug_loc_img, debug_loc_sz
+ debug_loc_img, debug_loc_sz,
+ NULL, 0, /* ALT .debug_info */
+ NULL, 0, /* ALT .debug_abbv */
+ NULL, 0, /* ALT .debug_line */
+ NULL, 0 /* ALT .debug_str */
);
}
}
|