diff options
author | Alan Modra <alan@SPRI.Levels.UniSA.Edu.Au> | 1998-05-06 12:31:37 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-05-06 12:31:37 -0600 |
commit | 410c387510bc90d3eae0ba6a6cf5b8233031b9f5 (patch) | |
tree | 1a7361dae2dfc002af1f5ebfc7ceb18972aec23f | |
parent | 6b7a2613b767ed43c40ebf25b78bda350cff9739 (diff) | |
download | gcc-410c387510bc90d3eae0ba6a6cf5b8233031b9f5.zip gcc-410c387510bc90d3eae0ba6a6cf5b8233031b9f5.tar.gz gcc-410c387510bc90d3eae0ba6a6cf5b8233031b9f5.tar.bz2 |
linux.h (ASM_COMMENT_START): Define as "#".
* config/linux.h (ASM_COMMENT_START): Define as "#".
* config/linux-aout.h (ASM_COMMENT_START): Likewise.
From-SVN: r19595
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/linux-aout.h | 9 | ||||
-rw-r--r-- | gcc/config/linux.h | 3 |
3 files changed, 14 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aead4d9..a6aa35c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed May 6 19:31:32 1998 Alan Modra <alan@spri.levels.unisa.edu.au> + + * config/linux.h (ASM_COMMENT_START): Define as "#". + * config/linux-aout.h (ASM_COMMENT_START): Likewise. + Wed May 6 15:51:39 1998 Jim Wilson <wilson@cygnus.com> * objc/Make-lang.h (objc-parse.o): Add toplev.h dependency. diff --git a/gcc/config/linux-aout.h b/gcc/config/linux-aout.h index 2e9a790..5372d1f 100644 --- a/gcc/config/linux-aout.h +++ b/gcc/config/linux-aout.h @@ -1,5 +1,5 @@ -/* Definitions for Linux - Copyright (C) 1995 Free Software Foundation, Inc. +/* Definitions for Linux-based GNU systems. + Copyright (C) 1995, 1997 Free Software Foundation, Inc. Contributed by H.J. Lu (hjl@nynexst.com) This file is part of GNU CC. @@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA. */ #undef HAVE_ATEXIT #define HAVE_ATEXIT -/* Linux uses ctype from glibc.a. I am not sure how complete it is. +/* GNU/Linux uses ctype from glibc.a. I am not sure how complete it is. For now, we play safe. It may change later. */ #if 0 @@ -36,6 +36,9 @@ Boston, MA 02111-1307, USA. */ #undef STARTFILE_SPEC #define STARTFILE_SPEC "%{pg:gcrt0.o%s} %{!pg:%{p:gcrt0.o%s} %{!p:crt0.o%s}} %{static:-static}" +#undef ASM_COMMENT_START +#define ASM_COMMENT_START "#" + #undef ASM_APP_ON #define ASM_APP_ON "#APP\n" diff --git a/gcc/config/linux.h b/gcc/config/linux.h index b619d01..97b0e13 100644 --- a/gcc/config/linux.h +++ b/gcc/config/linux.h @@ -34,6 +34,9 @@ Boston, MA 02111-1307, USA. */ #define MULTIBYTE_CHARS 1 #endif +#undef ASM_COMMENT_START +#define ASM_COMMENT_START "#" + #undef ASM_APP_ON #define ASM_APP_ON "#APP\n" |