From: Tom Hughes Date: Wed, 20 Jul 2005 13:56:22 +0000 (+0000) Subject: Handle stabs builtin type -30 (wide characters, 16 bit unsigned). X-Git-Tag: svn/VALGRIND_3_0_0~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1f2161fe1e125acc7819b8568addbf5f7cb96fc;p=thirdparty%2Fvalgrind.git Handle stabs builtin type -30 (wide characters, 16 bit unsigned). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4218 --- diff --git a/coregrind/m_debuginfo/stabs.c b/coregrind/m_debuginfo/stabs.c index 9c797442e9..74dcf58299 100644 --- a/coregrind/m_debuginfo/stabs.c +++ b/coregrind/m_debuginfo/stabs.c @@ -654,6 +654,7 @@ static SymType *stabtype_parser(SegInfo *si, SymType *def, Char **pp) case -27: type = ML_(st_mkint)(def, 1, True); break; case -28: type = ML_(st_mkint)(def, 2, True); break; case -29: type = ML_(st_mkint)(def, 4, True); break; + case -30: type = ML_(st_mkint)(def, 2, False); break; case -31: type = ML_(st_mkint)(def, 8, True); break; case -32: type = ML_(st_mkint)(def, 8, False); break; case -33: type = ML_(st_mkint)(def, 8, False); break;