* config/tc-rl78.c: Change line_separator to '@' so that '|' can
authorDJ Delorie <dj@redhat.com>
Wed, 3 Oct 2012 20:48:13 +0000 (20:48 +0000)
committerDJ Delorie <dj@redhat.com>
Wed, 3 Oct 2012 20:48:13 +0000 (20:48 +0000)
be used in expressions.

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

index 3e7778374dfc1ef1697769441da8ff48124f0795..e05cf1718de2d7ff6f3582702f258c49852c7b6c 100644 (file)
@@ -1,3 +1,8 @@
+2012-10-03  DJ Delorie  <dj@redhat.com>
+
+       * config/tc-rl78.c: Change line_separator to '@' so that '|' can
+       be used in expressions.
+
 2012-10-01  Alan Modra  <amodra@gmail.com>
 
        * write.c (chain_frchains_together_1): Reorder assertion to avoid
index 1d9fb2e6a4786c2459a16cc3eb7f4afe8ce12e91..53d3df2f2b619df6fc3813c9fa08a51f9336a87b 100644 (file)
@@ -38,7 +38,9 @@ const char comment_chars[]        = ";";
    first line of the input file.  This is because the compiler outputs
    #NO_APP at the beginning of its output.  */
 const char line_comment_chars[]   = "#";
-const char line_separator_chars[] = "|";
+/* Use something that isn't going to be needed by any expressions or
+   other syntax.  */
+const char line_separator_chars[] = "@";
 
 const char EXP_CHARS[]            = "eE";
 const char FLT_CHARS[]            = "dD";