From 1bf67e0db815f3248e7296beded23a9dbfbc9d41 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 10 Jun 1999 21:36:37 +0000 Subject: * read.c (read_a_source_file): Only declare inescape if QUOTES_IN_INSN. --- gas/read.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gas/read.c') diff --git a/gas/read.c b/gas/read.c index 6d34511..9b57438 100644 --- a/gas/read.c +++ b/gas/read.c @@ -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. */ -- cgit v1.1