|
From: <sv...@va...> - 2005-07-20 13:56:24
|
Author: tom
Date: 2005-07-20 14:56:22 +0100 (Wed, 20 Jul 2005)
New Revision: 4218
Log:
Handle stabs builtin type -30 (wide characters, 16 bit unsigned).
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 2005-07-20 13:49:55 UTC (rev 4217=
)
+++ trunk/coregrind/m_debuginfo/stabs.c 2005-07-20 13:56:22 UTC (rev 4218=
)
@@ -654,6 +654,7 @@
case -27: type =3D ML_(st_mkint)(def, 1, True); break;
case -28: type =3D ML_(st_mkint)(def, 2, True); break;
case -29: type =3D ML_(st_mkint)(def, 4, True); break;
+ case -30: type =3D ML_(st_mkint)(def, 2, False); break;
case -31: type =3D ML_(st_mkint)(def, 8, True); break;
case -32: type =3D ML_(st_mkint)(def, 8, False); break;
case -33: type =3D ML_(st_mkint)(def, 8, False); break;
|