From 07c72b0e789e4f6761ae73031c4a0be98db79794 Mon Sep 17 00:00:00 2001 From: pk Date: Wed, 19 Oct 1994 20:43:24 +0000 Subject: [PATCH] sparc handles `-c'. --- usr.bin/gprof/gprof.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c index f80b98773a99..e34f09f2e122 100644 --- a/usr.bin/gprof/gprof.c +++ b/usr.bin/gprof/gprof.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)gprof.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: gprof.c,v 1.6 1994/10/06 15:39:58 mycroft Exp $"; +static char *rcsid = "$Id: gprof.c,v 1.7 1994/10/19 20:43:24 pk Exp $"; #endif /* not lint */ #include "gprof.h" @@ -78,7 +78,7 @@ main(argc, argv) cyclethreshold = atoi( *++argv ); break; case 'c': -#if defined(vax) || defined(tahoe) +#if defined(vax) || defined(tahoe) || defined(sparc) cflag = TRUE; #else fprintf(stderr, "gprof: -c isn't supported on this architecture yet\n");