]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Handle stabs builtin type -30 (wide characters, 16 bit unsigned).
authorTom Hughes <tom@compton.nu>
Wed, 20 Jul 2005 13:56:22 +0000 (13:56 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 20 Jul 2005 13:56:22 +0000 (13:56 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4218

coregrind/m_debuginfo/stabs.c

index 9c797442e9fb49ae9bbb076197bd77df157d740e..74dcf5829951d521c1674f80c60b5d0af46438b2 100644 (file)
@@ -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;