line_comment_chars: Add '#'. This makes the assembler's handling of
authorNick Clifton <nickc@redhat.com>
Wed, 29 Jan 2003 10:05:52 +0000 (10:05 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 29 Jan 2003 10:05:52 +0000 (10:05 +0000)
# <linenum> "<filename>" directives work.

gas/ChangeLog
gas/config/tc-i386.c

index 703b230935db922fd7f9effa3a4b37e8f214e63d..e71d9653ac66f1ae145b871bc790de5058bc182e 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-29  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-i386.c (line_comment_chars): Add '#'.  This makes the
+       assembler's handling of # <linenum> "<filename>" directives work.
+
 2003-01-28  Jakub Jelinek  <jakub@redhat.com>
 
        * dwarf2dbg.c: Include filenames.h.
index 5b01605fd248e1216daf039ca053ad99f6bf381d..92540ad625d15af39c895fe884f83b3053cbf329 100644 (file)
@@ -207,7 +207,7 @@ const char comment_chars[] = "#/";
    #NO_APP at the beginning of its output.
    Also note that comments started like this one will always work if
    '/' isn't otherwise defined.  */
-const char line_comment_chars[] = "";
+const char line_comment_chars[] = "#";
 
 #else
 /* Putting '/' here makes it impossible to use the divide operator.
@@ -215,7 +215,7 @@ const char line_comment_chars[] = "";
 const char comment_chars[] = "#";
 #define PREFIX_SEPARATOR '/'
 
-const char line_comment_chars[] = "/";
+const char line_comment_chars[] = "/#";
 #endif
 
 const char line_separator_chars[] = ";";
This page took 0.047313 seconds and 4 git commands to generate.