From: Tom Hughes Date: Sat, 13 Nov 2004 00:40:18 +0000 (+0000) Subject: Remove a couple of commented out lines that were left in when committing X-Git-Tag: svn/VALGRIND_3_0_0~1328 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d249a6bd938245ea0b90f4905733867bc37b5379;p=thirdparty%2Fvalgrind.git Remove a couple of commented out lines that were left in when committing the previous stabs fix. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2984 --- diff --git a/coregrind/vg_stabs.c b/coregrind/vg_stabs.c index 1f08f681fb..28725fd27d 100644 --- a/coregrind/vg_stabs.c +++ b/coregrind/vg_stabs.c @@ -849,7 +849,6 @@ static SymType *stabtype_parser(SegInfo *si, SymType *def, Char **pp) UInt off, sz; SymType *fieldty; - // end = templ_name(p); end = SKIPPAST(p, ':', "method name") - 1; if (end[1] == ':') { @@ -1031,7 +1030,6 @@ static Bool initSym(SegInfo *si, Sym *sym, stab_types kind, Char **namep, Int va VG_(printf)("initSym(si=%p, tab=%p, sym=%p, kind=%d, name=%p \"%s\", val=%d)\n", si, si->stab_typetab, sym, kind, name, name, val); - // ty = templ_name(name); ty = VG_(strchr)(name, ':'); while (ty && ty[1] == ':') ty = VG_(strchr)(ty + 2, ':');