mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-13 06:33:56 +00:00
Unbreak aix build.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6578
This commit is contained in:
@@ -428,11 +428,12 @@ void VG_(di_aix5_notify_segchange)(
|
||||
|
||||
} else {
|
||||
|
||||
/* Dump all the segInfos which intersect code_start/code_len. */
|
||||
/* Dump all the segInfos whose text segments intersect
|
||||
code_start/code_len. */
|
||||
while (True) {
|
||||
for (si = segInfo_list; si; si = si->next) {
|
||||
if (code_start + code_len <= si->start
|
||||
|| si->start + si->size <= code_start)
|
||||
if (code_start + code_len <= si->text_start_avma
|
||||
|| si->text_start_avma + si->text_size <= code_start)
|
||||
continue; /* no overlap */
|
||||
else
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user