diff options
author | Nick Clifton <nickc@redhat.com> | 2007-02-28 10:02:37 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-02-28 10:02:37 +0000 |
commit | 870074ddaece1635f45566c00e2bae2a670b1149 (patch) | |
tree | 9a4d61a1c408ab96b8096b6010184aeb53589fd8 /gas | |
parent | b125d98ba8eede1c6167b54f970b1522b3b2869e (diff) | |
download | gdb-870074ddaece1635f45566c00e2bae2a670b1149.zip gdb-870074ddaece1635f45566c00e2bae2a670b1149.tar.gz gdb-870074ddaece1635f45566c00e2bae2a670b1149.tar.bz2 |
PR gas/2623
* config/tc-msp430.c (line_separator_char): Change to '{'.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-msp430.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3180f3b..df1cafd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2007-02-28 Nick Clifton <nickc@redhat.com> + + PR gas/2623 + * config/tc-msp430.c (line_separator_char): Change to '{'. + 2007-02-27 Alan Modra <amodra@bigpond.net.au> * config/tc-m68hc11.c (fixup24): Correct fixup size. diff --git a/gas/config/tc-msp430.c b/gas/config/tc-msp430.c index 6936a2a..6bf2154 100644 --- a/gas/config/tc-msp430.c +++ b/gas/config/tc-msp430.c @@ -166,7 +166,7 @@ static struct hcodes_s msp430_hcodes[] = const char comment_chars[] = ";"; const char line_comment_chars[] = "#"; -const char line_separator_chars[] = "|"; +const char line_separator_chars[] = "{"; const char EXP_CHARS[] = "eE"; const char FLT_CHARS[] = "dD"; |