diff options
author | Alan Modra <amodra@gmail.com> | 2010-03-09 00:41:24 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-03-09 00:41:24 +0000 |
commit | 4199fe1239b2fdbbf552f85524e0f9dafd61e100 (patch) | |
tree | c9b402ccdd8c8d5485530b965f0597ae2d77f5c9 /gas | |
parent | 840a467a0af6d363b0367f89bbfd92fc78786b2e (diff) | |
download | gdb-4199fe1239b2fdbbf552f85524e0f9dafd61e100.zip gdb-4199fe1239b2fdbbf552f85524e0f9dafd61e100.tar.gz gdb-4199fe1239b2fdbbf552f85524e0f9dafd61e100.tar.bz2 |
PR gas/11356
* listing.c (listing_newline): Correct backslash quote logic.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/listing.c | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index cd9149d..a4f7300 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2010-03-09 Alan Modra <amodra@gmail.com> + + PR gas/11356 + * listing.c (listing_newline): Correct backslash quote logic. + 2010-03-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * config/tc-i386.h [TE_SOLARIS] (ELF_TARGET_FORMAT): Define. diff --git a/gas/listing.c b/gas/listing.c index 9a71c76..002b3c5 100644 --- a/gas/listing.c +++ b/gas/listing.c @@ -347,10 +347,12 @@ listing_newline (char *ps) || is_end_of_line [(unsigned char) *copy] != 1); copy++) { - if (*copy == '\\') - seen_slash = ! seen_slash; - else if (*copy == '"' && seen_slash) - seen_quote = ! seen_quote; + if (seen_slash) + seen_slash = 0; + else if (*copy == '\\') + seen_slash = 1; + else if (*copy == '"') + seen_quote = !seen_quote; } len = copy - input_line_pointer + 1; |