summaryrefslogtreecommitdiff
path: root/usr.bin/gprof/gprof.c
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-10-02 02:59:51 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-10-02 02:59:51 +0000
commit36ae36319d92202d4c1d7634d20ab3dcc402e907 (patch)
tree1dd176e17be7e447ebc7bf06b21254eccc37e73e /usr.bin/gprof/gprof.c
parentfdfd0e2d2493cfee377e69f3468092370c9043f2 (diff)
Support for call graph detection using the -c options on i386
Diffstat (limited to 'usr.bin/gprof/gprof.c')
-rw-r--r--usr.bin/gprof/gprof.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/gprof/gprof.c b/usr.bin/gprof/gprof.c
index 0530adf7402..9db9fe58329 100644
--- a/usr.bin/gprof/gprof.c
+++ b/usr.bin/gprof/gprof.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gprof.c,v 1.2 1996/06/26 05:33:51 deraadt Exp $ */
+/* $OpenBSD: gprof.c,v 1.3 1996/10/02 02:59:49 tholo Exp $ */
/* $NetBSD: gprof.c,v 1.8 1995/04/19 07:15:59 cgd Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)gprof.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: gprof.c,v 1.2 1996/06/26 05:33:51 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: gprof.c,v 1.3 1996/10/02 02:59:49 tholo Exp $";
#endif
#endif /* not lint */
@@ -84,7 +84,7 @@ main(argc, argv)
cyclethreshold = atoi( *++argv );
break;
case 'c':
-#if defined(vax) || defined(tahoe) || defined(sparc)
+#if defined(i386) || defined(vax) || defined(tahoe) || defined(sparc)
cflag = TRUE;
#else
fprintf(stderr, "gprof: -c isn't supported on this architecture yet\n");