[BACK]Return to gprof.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Diff for /src/usr.bin/gprof/gprof.c between version 1.4 and 1.5

version 1.4, 1998/08/11 02:54:08 version 1.5, 1999/06/16 15:23:53
Line 84 
Line 84 
             cyclethreshold = atoi( *++argv );              cyclethreshold = atoi( *++argv );
             break;              break;
         case 'c':          case 'c':
 #if defined(i386) || defined(vax) || defined(tahoe) || defined(sparc)  #if defined(__i386__) || defined(__vax__) || defined(__tahoe__) || defined(__sparc__)
             cflag = TRUE;              cflag = TRUE;
 #else  #else
             fprintf(stderr, "gprof: -c isn't supported on this architecture yet\n");              fprintf(stderr, "gprof: -c isn't supported on this architecture yet\n");
Line 730 
Line 730 
          *      perhaps we should just drop this code entirely...           *      perhaps we should just drop this code entirely...
          */           */
     name = strtab + nlistp -> n_un.n_strx;      name = strtab + nlistp -> n_un.n_strx;
 #ifdef sparc  #ifdef __sparc__
     if (nlistp -> n_value & 3)      if (nlistp -> n_value & 3)
         return FALSE;          return FALSE;
     if ( *name == '.' ) {      if ( *name == '.' ) {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5