|
From: <sv...@va...> - 2006-10-05 00:41:34
|
Author: sewardj
Date: 2006-10-05 01:41:31 +0100 (Thu, 05 Oct 2006)
New Revision: 6177
Log:
Cosmetics.
Modified:
branches/AIX5/coregrind/m_debuginfo/debuginfo.c
Modified: branches/AIX5/coregrind/m_debuginfo/debuginfo.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/AIX5/coregrind/m_debuginfo/debuginfo.c 2006-10-05 00:41:05 U=
TC (rev 6176)
+++ branches/AIX5/coregrind/m_debuginfo/debuginfo.c 2006-10-05 00:41:31 U=
TC (rev 6177)
@@ -120,10 +120,12 @@
*/
static void discard_SegInfo ( SegInfo* si )
{
-# if defined(VGO_aix5)
+# if defined(VGP_ppc32_aix5)
HChar* reason =3D "__unload";
+# elif defined(VGP_ppc64_aix5)
+ HChar* reason =3D "kunload64";
# else
- HChar* reason =3D "munmap()";
+ HChar* reason =3D "munmap";
# endif
=20
SegInfo** prev_next_ptr =3D &segInfo_list;
@@ -134,7 +136,7 @@
// Found it; remove from list and free it.
if (VG_(clo_verbosity) > 1 || VG_(clo_trace_redir))
VG_(message)(Vg_DebugMsg,=20
- "Discarding syms at %p-%p in %s due to %s",=20
+ "Discarding syms at %p-%p in %s due to %s()",=20
si->start, si->start + si->size,
curr->filename ? curr->filename : (UChar*)"???"=
,
reason);
|