diff options
author | DJ Delorie <dj@redhat.com> | 2012-10-03 20:48:13 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2012-10-03 20:48:13 +0000 |
commit | cbf1fdc93bda5201e7752df0d599a45d1fe1a153 (patch) | |
tree | 41205842e31c07bee82459ed64eb499dd7e37a1a /gas/config/tc-rl78.c | |
parent | aa14df25257d62e6c90490c29e524a1cc0c5d503 (diff) | |
download | gdb-cbf1fdc93bda5201e7752df0d599a45d1fe1a153.zip gdb-cbf1fdc93bda5201e7752df0d599a45d1fe1a153.tar.gz gdb-cbf1fdc93bda5201e7752df0d599a45d1fe1a153.tar.bz2 |
* config/tc-rl78.c: Change line_separator to '@' so that '|' can
be used in expressions.
Diffstat (limited to 'gas/config/tc-rl78.c')
-rw-r--r-- | gas/config/tc-rl78.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/config/tc-rl78.c b/gas/config/tc-rl78.c index 1d9fb2e..53d3df2 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"; |