|
From: <sv...@va...> - 2006-01-11 13:16:54
|
Author: tom
Date: 2006-01-11 13:16:35 +0000 (Wed, 11 Jan 2006)
New Revision: 5514
Log:
Handle the <<=3D and >>=3D operators in stabs. Fixes bug #119914.
Modified:
trunk/coregrind/m_debuginfo/stabs.c
Modified: trunk/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
--- trunk/coregrind/m_debuginfo/stabs.c 2006-01-10 20:58:43 UTC (rev 5513=
)
+++ trunk/coregrind/m_debuginfo/stabs.c 2006-01-11 13:16:35 UTC (rev 5514=
)
@@ -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 {
|