* 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.
This commit is contained in:
parent
5767cfb748
commit
6be977fb57
3 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,11 @@
|
||||||
Fri Jul 7 11:17:27 1995 Ian Lance Taylor <ian@cygnus.com>
|
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.
|
Add SPARC ELF PIC support.
|
||||||
* write.c (fixup_segment): Pass fixP to TC_RELOC_RTSYM_LOC_FIXUP,
|
* write.c (fixup_segment): Pass fixP to TC_RELOC_RTSYM_LOC_FIXUP,
|
||||||
not fixP->fx_r_type.
|
not fixP->fx_r_type.
|
||||||
|
|
|
@ -62,9 +62,6 @@
|
||||||
|
|
||||||
#include "targ-cpu.h"
|
#include "targ-cpu.h"
|
||||||
|
|
||||||
/* We want \v. */
|
|
||||||
#define BACKSLASH_V 1
|
|
||||||
|
|
||||||
#define OBJ_DEFAULT_OUTPUT_FILE_NAME "b.out"
|
#define OBJ_DEFAULT_OUTPUT_FILE_NAME "b.out"
|
||||||
|
|
||||||
extern const short seg_N_TYPE[];
|
extern const short seg_N_TYPE[];
|
||||||
|
|
|
@ -2384,11 +2384,9 @@ next_char_of_string ()
|
||||||
c = '\t';
|
c = '\t';
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef BACKSLASH_V
|
|
||||||
case 'v':
|
case 'v':
|
||||||
c = '\013';
|
c = '\013';
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
|
|
||||||
case '\\':
|
case '\\':
|
||||||
case '"':
|
case '"':
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue