From: Nick Clifton Date: Mon, 29 Sep 2008 14:20:39 +0000 (+0000) Subject: PR 6878 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0a139c7d13d2dc5454aae5be5a4fe6523a82196;p=binutils-gdb.git PR 6878 * app.c (do_scrub_chars): Only issue warnings about tick characters detected in symbol strings if hex ticks are supported. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index bf12c11ece2..485dfb32f53 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,14 @@ +2008-09-29 Nick Clifton + + PR 6878 + * app.c (do_scrub_chars): Only issue warnings about tick + characters detected in symbol strings if hex ticks are supported. + +2008-09-29 Nick Clifton + + * dw2gencfi.c (output_cfi_insn): Fix typo in invocation of + tc_cfi_emit_pcrel_expr macro. + 2008-09-28 Daniel Jacobowitz * NEWS: Mention .cfi_val_encoded_addr. diff --git a/gas/app.c b/gas/app.c index 6fa604fa831..b9832d14b71 100644 --- a/gas/app.c +++ b/gas/app.c @@ -1024,7 +1024,8 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen) #ifndef IEEE_STYLE case LEX_IS_ONECHAR_QUOTE: - if (state == 9) +#ifdef H_TICK_HEX + if (state == 9 && enable_h_tick_hex) { char c; @@ -1032,6 +1033,7 @@ do_scrub_chars (int (*get) (char *, int), char *tostart, int tolen) as_warn ("'%c found after symbol", c); UNGET (c); } +#endif if (state == 10) { /* Preserve the whitespace in foo 'b'. */