|
From: <sv...@va...> - 2006-02-22 13:16:42
|
Author: dirk
Date: 2006-02-22 13:16:36 +0000 (Wed, 22 Feb 2006)
New Revision: 5671
Log:
backport fixes for more stabs problems (117936,119914,120345)
Modified:
branches/VALGRIND_3_1_BRANCH/coregrind/m_debuginfo/stabs.c
Modified: branches/VALGRIND_3_1_BRANCH/coregrind/m_debuginfo/stabs.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/VALGRIND_3_1_BRANCH/coregrind/m_debuginfo/stabs.c 2006-02-22=
12:55:13 UTC (rev 5670)
+++ branches/VALGRIND_3_1_BRANCH/coregrind/m_debuginfo/stabs.c 2006-02-22=
13:16:36 UTC (rev 5671)
@@ -863,6 +863,8 @@
VG_(strncmp)(p, "operator>=3D::", 12) =3D=3D 0 ||
VG_(strncmp)(p, "operator<<::", 12) =3D=3D 0 ||
VG_(strncmp)(p, "operator>>::", 12) =3D=3D 0 ||
+ VG_(strncmp)(p, "operator<<=3D::", 13) =3D=3D 0 ||
+ VG_(strncmp)(p, "operator>>=3D::", 13) =3D=3D 0 ||
VG_(strncmp)(p, "operator->::", 12) =3D=3D 0) {
p =3D SKIPPAST(p, ':', "member name");
} else {
|