|
From: <sv...@va...> - 2005-05-11 18:44:20
|
Author: tom
Date: 2005-05-11 19:44:13 +0100 (Wed, 11 May 2005)
New Revision: 3660
Modified:
trunk/coregrind/vg_stabs.c
Log:
Fix stabs parsing bug introduced by fix to bug 90128 which meant
that structDef() didn't always call VG_(st_setname) as it should.
Modified: trunk/coregrind/vg_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/vg_stabs.c 2005-05-11 11:57:41 UTC (rev 3659)
+++ trunk/coregrind/vg_stabs.c 2005-05-11 18:44:13 UTC (rev 3660)
@@ -185,8 +185,8 @@
isstruct ? "struct" : "union", name, ref, def);
=20
def =3D VG_(st_mktypedef)(ref, name, VG_(st_basetype)(def, False))=
;
- VG_(st_setname)(def, name);
}
+ VG_(st_setname)(def, name);
return def;
}
=20
|