mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-25 02:43:21 +08:00
* read.c (read_a_source_file): Only declare inescape if
QUOTES_IN_INSN.
This commit is contained in:
@ -1,5 +1,14 @@
|
|||||||
1999-06-11 Ian Lance Taylor <ian@zembu.com>
|
1999-06-11 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
|
* read.c (read_a_source_file): Only declare inescape if
|
||||||
|
QUOTES_IN_INSN.
|
||||||
|
|
||||||
|
* itbl-ops.c (itbl_disassemble): Change sprintf format strings to
|
||||||
|
match parameters.
|
||||||
|
(find_entry_byval): Add parens to avoid warning.
|
||||||
|
|
||||||
|
* as.c: If HAVE_ITBL_CPU, include "itbl-ops.h".
|
||||||
|
|
||||||
* symbols.c (resolve_symbol_value): Don't permit subtraction of
|
* symbols.c (resolve_symbol_value): Don't permit subtraction of
|
||||||
undefined symbols.
|
undefined symbols.
|
||||||
|
|
||||||
|
@ -829,7 +829,10 @@ read_a_source_file (name)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int inquote = 0, inescape = 0;
|
int inquote = 0;
|
||||||
|
#ifdef QUOTES_IN_INSN
|
||||||
|
int inescape = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* WARNING: c has char, which may be end-of-line. */
|
/* WARNING: c has char, which may be end-of-line. */
|
||||||
/* Also: input_line_pointer->`\0` where c was. */
|
/* Also: input_line_pointer->`\0` where c was. */
|
||||||
|
Reference in New Issue
Block a user