diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-03-12 11:45:12 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-03-12 11:45:12 +0000 |
| commit | 60ae9f88401986c4a6b2b5ac50ee520a65dab66f (patch) | |
| tree | 94e40fe6f13e5311bdd4fda02ffbc38f85aa8d77 /gnu/usr.bin/cc/include | |
| parent | 8dcdb65e4ea3d8a1b36366b8bf1b9f98de2f626d (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/cc/include')
| -rw-r--r-- | gnu/usr.bin/cc/include/tm.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/usr.bin/cc/include/tm.h b/gnu/usr.bin/cc/include/tm.h index e6286131a2ff..5dc03fb679b6 100644 --- a/gnu/usr.bin/cc/include/tm.h +++ b/gnu/usr.bin/cc/include/tm.h @@ -22,9 +22,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* This is tested by i386gas.h. */ #define YES_UNDERSCORES -/* Don't assume anything about the header files. */ -#define NO_IMPLICIT_EXTERN_C - #include "i386/gstabs.h" /* Get perform_* macros to build libgcc.a. */ @@ -68,7 +65,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define HAVE_ATEXIT -/* Redefine this to use %eax instead of %edx. */ +/* Tell final.c that we don't need a label passed to mcount. */ + +#define NO_PROFILE_DATA + +/* Redefine this to not pass an unused label in %edx. */ + #undef FUNCTION_PROFILER #define FUNCTION_PROFILER(FILE, LABELNO) \ { \ @@ -88,10 +90,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ } #endif -/* There are conflicting reports about whether this system uses - a different assembler syntax. wilson@cygnus.com says # is right. */ -#undef COMMENT_BEGIN -#define COMMENT_BEGIN "#" +/* Override the default comment-starter of "/". */ + +#undef ASM_COMMENT_START +#define ASM_COMMENT_START "#" #undef ASM_APP_ON #define ASM_APP_ON "#APP\n" |
