diff options
author | bde <bde@FreeBSD.org> | 1994-09-02 20:39:41 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-09-02 20:39:41 +0000 |
commit | 874994c7cde823b42c2cba4a2db8dcbb27c45f3e (patch) | |
tree | cc9cfb06dec2e2813321ba7f17f1ee37132c6afc /gnu/usr.bin/cc/include | |
parent | ca993f1b3724a96b78e301373bbcdd6180cd2bce (diff) | |
download | FreeBSD-src-874994c7cde823b42c2cba4a2db8dcbb27c45f3e.zip FreeBSD-src-874994c7cde823b42c2cba4a2db8dcbb27c45f3e.tar.gz |
Disable one of my extensions (function profiler epilogues) that
we're not ready for yet. gcc and all profiled libraries will need
to be recompiled. I suspect that the dependencies aren't complete
enough to do this automatically.
Diffstat (limited to 'gnu/usr.bin/cc/include')
-rw-r--r-- | gnu/usr.bin/cc/include/tm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/include/tm.h b/gnu/usr.bin/cc/include/tm.h index 8ab2309..5efd2e0 100644 --- a/gnu/usr.bin/cc/include/tm.h +++ b/gnu/usr.bin/cc/include/tm.h @@ -79,6 +79,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ fprintf (FILE, "\tcall mcount\n"); \ } +#if 0 /* not ready for this; it should be decided at compile time */ #define FUNCTION_PROFILER_EPILOGUE(FILE) \ { \ if (flag_pic) \ @@ -86,6 +87,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ else \ fprintf (FILE, "\tcall mexitcount\n"); \ } +#endif /* There are conflicting reports about whether this system uses a different assembler syntax. wilson@cygnus.com says # is right. */ |