* config/tc-rl78.c: Change line_separator to '@' so that '|' can

be used in expressions.
This commit is contained in:
DJ Delorie 2012-10-03 20:48:13 +00:00
parent aa14df2525
commit cbf1fdc93b
2 changed files with 8 additions and 1 deletions

View 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

View 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";