From e1f2161fe1e125acc7819b8568addbf5f7cb96fc Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 20 Jul 2005 13:56:22 +0000 Subject: [PATCH] Handle stabs builtin type -30 (wide characters, 16 bit unsigned). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4218 --- coregrind/m_debuginfo/stabs.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.47.3