diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-06-10 21:36:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-06-10 21:36:37 +0000 |
commit | 1bf67e0db815f3248e7296beded23a9dbfbc9d41 (patch) | |
tree | 639a6380672812d5ae5b14ee0c5c329cedb00aa9 /gas/read.c | |
parent | 41e60a8210145f7d28995754ca43de3fc37eb2b4 (diff) | |
download | gdb-1bf67e0db815f3248e7296beded23a9dbfbc9d41.zip gdb-1bf67e0db815f3248e7296beded23a9dbfbc9d41.tar.gz gdb-1bf67e0db815f3248e7296beded23a9dbfbc9d41.tar.bz2 |
* read.c (read_a_source_file): Only declare inescape if
QUOTES_IN_INSN.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -829,7 +829,10 @@ read_a_source_file (name) } 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. */ /* Also: input_line_pointer->`\0` where c was. */ |