From: DJ Delorie Date: Wed, 3 Oct 2012 20:48:13 +0000 (+0000) Subject: * config/tc-rl78.c: Change line_separator to '@' so that '|' can X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cbf1fdc93bda5201e7752df0d599a45d1fe1a153;p=binutils-gdb.git * config/tc-rl78.c: Change line_separator to '@' so that '|' can be used in expressions. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 3e7778374df..e05cf1718de 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2012-10-03 DJ Delorie + + * config/tc-rl78.c: Change line_separator to '@' so that '|' can + be used in expressions. + 2012-10-01 Alan Modra * write.c (chain_frchains_together_1): Reorder assertion to avoid diff --git a/gas/config/tc-rl78.c b/gas/config/tc-rl78.c index 1d9fb2e6a47..53d3df2f2b6 100644 --- a/gas/config/tc-rl78.c +++ b/gas/config/tc-rl78.c @@ -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";