* app.c (do_scrub_next_char): Always accept \v. Don't make it
authorIan Lance Taylor <ian@airs.com>
Fri, 7 Jul 1995 20:10:27 +0000 (20:10 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 7 Jul 1995 20:10:27 +0000 (20:10 +0000)
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.

gas/ChangeLog
gas/config/obj-bout.h
gas/read.c

index e61efb07885932ce9d0e3b13c1bf244b81f16a76..acb3e595eefa15d903ce9f3f4d703c60136c2e93 100644 (file)
@@ -1,5 +1,11 @@
 Fri Jul  7 11:17:27 1995  Ian Lance Taylor  <ian@cygnus.com>
 
+       * 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.
+
        Add SPARC ELF PIC support.
        * write.c (fixup_segment): Pass fixP to TC_RELOC_RTSYM_LOC_FIXUP,
        not fixP->fx_r_type.
index 936ab8938db1f0b368c88bd860b6e1d41e825623..959ab942f8a3b290e8e532fe704b766400e0d98d 100644 (file)
@@ -62,9 +62,6 @@
 
 #include "targ-cpu.h"
 
-/* We want \v. */
-#define BACKSLASH_V 1
-
 #define OBJ_DEFAULT_OUTPUT_FILE_NAME   "b.out"
 
 extern const short seg_N_TYPE[];
index f347c8ec5298c8cfa9e100d69efba0ca9419d0b5..b1c1e24c53738074993d37cefe80eb84b5c7c854 100644 (file)
@@ -2384,11 +2384,9 @@ next_char_of_string ()
          c = '\t';
          break;
 
-#ifdef BACKSLASH_V
        case 'v':
          c = '\013';
          break;
-#endif
 
        case '\\':
        case '"':
This page took 0.038713 seconds and 4 git commands to generate.