aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1995-07-07 20:10:27 +0000
committerIan Lance Taylor <ian@airs.com>1995-07-07 20:10:27 +0000
commit6be977fb5715f51a75aa0b104468614696a87255 (patch)
tree80a8895a08d9ed9a6bb46c89c5645c8ebf53ecd9 /gas/read.c
parent5767cfb748416544cb8ae12a68b256a55f3f8856 (diff)
downloadgdb-6be977fb5715f51a75aa0b104468614696a87255.zip
gdb-6be977fb5715f51a75aa0b104468614696a87255.tar.gz
gdb-6be977fb5715f51a75aa0b104468614696a87255.tar.bz2
* app.c (do_scrub_next_char): Always accept \v. Don't make it
conditional on BACKSLASH_V. * read.c (next_char_of_string): Likewise. * config/obj-bout.h (BACKSLASH_V): Don't define. * config/tc-mips.h (BACKSLASH_V): Don't define. PR 5604.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gas/read.c b/gas/read.c
index f347c8e..b1c1e24 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -2384,11 +2384,9 @@ next_char_of_string ()
c = '\t';
break;
-#ifdef BACKSLASH_V
case 'v':
c = '\013';
break;
-#endif
case '\\':
case '"':