aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gmon
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2006-10-28 13:34:35 +0000
committerBruce Evans <bde@FreeBSD.org>2006-10-28 13:34:35 +0000
commit81f2acfc061d8df76fc320f56b78b67709f9ebe2 (patch)
tree707e5af7870c8303098629382866cdf4943b7904 /lib/libc/gmon
parent91b4d1bfc23769e27e10bfab034632291d339727 (diff)
downloadsrc-81f2acfc061d8df76fc320f56b78b67709f9ebe2.tar.gz
src-81f2acfc061d8df76fc320f56b78b67709f9ebe2.zip
Backed out rev.1.10 (a special case for amd64). The amd64 mcount code
never needed any frame pointers for itself.
Notes
Notes: svn path=/head/; revision=163739
Diffstat (limited to 'lib/libc/gmon')
-rw-r--r--lib/libc/gmon/Makefile.inc6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libc/gmon/Makefile.inc b/lib/libc/gmon/Makefile.inc
index 2b353d8be7ec..98c73953319a 100644
--- a/lib/libc/gmon/Makefile.inc
+++ b/lib/libc/gmon/Makefile.inc
@@ -12,12 +12,6 @@ MAN+= moncontrol.3
MLINKS+=moncontrol.3 monstartup.3
-.if ${MACHINE_ARCH} == amd64
-# mcount needs to be compiled with frame pointers and without profiling
-mcount.po: mcount.c
- ${CC} ${CFLAGS} -fno-omit-frame-pointer -c ${.IMPSRC} -o ${.TARGET}
-.else
# mcount cannot be compiled with profiling
mcount.po: mcount.o
cp mcount.o mcount.po
-.endif