This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: ASM_COMMENT_START and gas divide operator


This moves the definitions to the right place.

	* config/linux.h (ASM_COMMENT_START): Remove from here,
	* config/linux-aout.h (ASM_COMMENT_START): and here,
	* config/i386/linux.h (ASM_COMMENT_START): to here,
	* config/i386/linux-aout.h (ASM_COMMENT_START): and here.
	* config/i386/linux-oldld.h (ASM_COMMENT_START): Define
	here as '#' too.

--- gcc/config/linux.h.orig	Thu May  7 21:46:28 1998
+++ gcc/config/linux.h	Sun Apr  5 03:08:45 1998
@@ -34,9 +34,6 @@
 #define MULTIBYTE_CHARS 1
 #endif
 
-#undef ASM_COMMENT_START
-#define ASM_COMMENT_START "#"
-
 #undef ASM_APP_ON
 #define ASM_APP_ON "#APP\n"
 
--- gcc/config/linux-aout.h.orig	Thu May  7 21:46:28 1998
+++ gcc/config/linux-aout.h	Sun Dec  7 03:54:04 1997
@@ -36,9 +36,6 @@
 #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"
 
--- gcc/config/i386/linux.h.orig	Sat Mar  7 01:14:48 1998
+++ gcc/config/i386/linux.h	Thu May  7 22:17:15 1998
@@ -37,6 +37,9 @@
 #undef DEFAULT_PCC_STRUCT_RETURN
 #define DEFAULT_PCC_STRUCT_RETURN 1
 
+#undef ASM_COMMENT_START
+#define ASM_COMMENT_START "#"
+
 /* This is how to output an element of a case-vector that is relative.
    This is only used for PIC code.  See comments by the `casesi' insn in
    i386.md for an explanation of the expression this outputs. */
--- gcc/config/i386/linux-aout.h.orig	Sun Dec  7 03:55:24 1997
+++ gcc/config/i386/linux-aout.h	Thu May  7 22:18:01 1998
@@ -25,6 +25,9 @@
 #include <i386/gstabs.h>
 #include <linux-aout.h>	/* some common stuff */
 
+#undef ASM_COMMENT_START
+#define ASM_COMMENT_START "#"
+
 /* Specify predefined symbols in preprocessor.  */
 
 #undef CPP_PREDEFINES
--- gcc/config/i386/linux-oldld.h.orig	Sun Dec  7 03:55:25 1997
+++ gcc/config/i386/linux-oldld.h	Thu May  7 22:17:50 1998
@@ -26,6 +26,9 @@
 #include <i386/gstabs.h>
 #include <linux-aout.h>	/* some common stuff */
 
+#undef ASM_COMMENT_START
+#define ASM_COMMENT_START "#"
+
 /* Specify predefined symbols in preprocessor.  */
 
 #undef CPP_PREDEFINES



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]