diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c index 6ad996293ff..185e2c620b6 100644 --- a/usr.bin/gprof/gprof.c +++ b/usr.bin/gprof/gprof.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: gprof.c,v 1.5 1997/07/10 06:45:00 charnier Exp $"; + "$Id: gprof.c,v 1.6 1997/07/15 08:04:40 charnier Exp $"; #endif /* not lint */ #include @@ -728,8 +728,7 @@ funcsymbol( nlistp ) /* * name must start with an underscore if uflag is set. * can't have any `funny' characters in name, - * where `funny' includes `.', .o file names - * and `$', pascal labels. + * where `funny' means `.' (.o file names) * need to make an exception for sparc .mul & co. * perhaps we should just drop this code entirely... */ @@ -747,7 +746,7 @@ funcsymbol( nlistp ) } #endif while ( c = *name++ ) { - if ( c == '.' || c == '$' ) { + if ( c == '.' ) { return FALSE; } }